Skip to content

Commit 9f7622f

Browse files
author
GitHub Release Workflow
committed
2.2.5 versioning
Signed-off-by: GitHub Release Workflow <>
1 parent 83fca01 commit 9f7622f

File tree

15 files changed

+19
-16
lines changed

15 files changed

+19
-16
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## [2.2.5] - 2024-06-28
4+
- Corrected handling of 'collectionlimit' when specified in a config file
5+
36
## [2.2.4] - 2024-06-14
47
- Hide password and token parameters from console output when running the tool from a config file
58

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2017-2020 DMTF. All rights reserved.
1+
Copyright 2017-2024 DMTF. All rights reserved.
22

33
# Redfish Interop Validator
44

RedfishInteropValidator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2016-2023 DMTF. All rights reserved.
2+
# Copyright 2017-2024 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/master/LICENSE.md
44

55
from redfish_interop_validator.RedfishInteropValidator import main, my_logger

redfish_interop_validator/RedfishInteropValidator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# Copyright Notice:
3-
# Copyright 2016 DMTF. All rights reserved.
3+
# Copyright 2017-2024 DMTF. All rights reserved.
44
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/master/LICENSE.md
55

66
import os
@@ -17,7 +17,7 @@
1717
from redfish_interop_validator.profile import getProfiles, checkProfileAgainstSchema, hashProfile
1818
from redfish_interop_validator.validateResource import validateSingleURI, validateURITree
1919

20-
tool_version = '2.2.4'
20+
tool_version = '2.2.5'
2121

2222
# Set up the custom debug levels
2323
VERBOSE1 = logging.INFO - 1

redfish_interop_validator/RedfishLogo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2018-2019 DMTF. All rights reserved.
2+
# Copyright 2017-2024 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
44

55
"""

redfish_interop_validator/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2016-2021 DMTF. All rights reserved.
2+
# Copyright 2017-2024 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
44

55
import configparser

redfish_interop_validator/interop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# Copyright Notice:
3-
# Copyright 2016 DMTF. All rights reserved.
3+
# Copyright 2017-2024 DMTF. All rights reserved.
44
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Interop-Validator/blob/master/LICENSE.md
55

66
import re

redfish_interop_validator/profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# Copyright Notice:
3-
# Copyright 2016 DMTF. All rights reserved.
3+
# Copyright 2017-2024 DMTF. All rights reserved.
44
# License: BSD 3-Clause License. For full text see link:
55
# https://github.com/DMTF/Redfish-Service-Validator/LICENSE.md
66

redfish_interop_validator/redfish.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2016-2020 DMTF. All rights reserved.
2+
# Copyright 2017-2024 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
44

55
import re

redfish_interop_validator/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright Notice:
2-
# Copyright 2016-2019 DMTF. All rights reserved.
2+
# Copyright 2017-2024 DMTF. All rights reserved.
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfish-Service-Validator/blob/master/LICENSE.md
44

55
from datetime import datetime, timedelta

0 commit comments

Comments
 (0)