Skip to content

Commit a9c571e

Browse files
author
GitHub Release Workflow
committed
2.4.7 versioning
Signed-off-by: GitHub Release Workflow <>
1 parent 90babbb commit a9c571e

19 files changed

+23
-20
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.4.7] - 2024-06-28
4+
- Corrected handling of 'collectionlimit' when specified in a config file
5+
36
## [2.4.6] - 2024-06-14
47
- Hide password and token parameters from console output when running the tool from a config file
58

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2016-2024, Contributing Member(s) of Distributed Management Task
3+
Copyright (c) 2017-2024, Contributing Member(s) of Distributed Management Task
44
Force, Inc.. All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without modification,

README.md

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

33
# Redfish Service Validator
44

RedfishServiceValidator.py

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

RedfishServiceValidatorGui.py

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

redfish_service_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/main/LICENSE.md
44

55
"""

redfish_service_validator/RedfishServiceValidator.py

Lines changed: 2 additions & 2 deletions
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/main/LICENSE.md
44

55
import os
@@ -16,7 +16,7 @@
1616
from urllib.parse import urlparse
1717
from collections import Counter
1818

19-
tool_version = '2.4.6'
19+
tool_version = '2.4.7'
2020

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

redfish_service_validator/RedfishServiceValidatorGui.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/main/LICENSE.md
44

55
"""

redfish_service_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/main/LICENSE.md
44

55
import configparser

redfish_service_validator/helper.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/main/LICENSE.md
44

55
import re

0 commit comments

Comments
 (0)