Skip to content

Commit

Permalink
2.4.7 versioning
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub Release Workflow <>
  • Loading branch information
GitHub Release Workflow committed Jun 28, 2024
1 parent 90babbb commit a9c571e
Show file tree
Hide file tree
Showing 19 changed files with 23 additions and 20 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2017-2022 DMTF. All rights reserved.
Copyright 2017-2024 DMTF. All rights reserved.

# Redfish Service Validator

Expand Down
2 changes: 1 addition & 1 deletion RedfishServiceValidator.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion RedfishServiceValidatorGui.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/RedfishLogo.py
Original file line number Diff line number Diff line change
@@ -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

"""
Expand Down
4 changes: 2 additions & 2 deletions redfish_service_validator/RedfishServiceValidator.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/RedfishServiceValidatorGui.py
Original file line number Diff line number Diff line change
@@ -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

"""
Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/config.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/helper.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/metadata.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/schema_pack.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/tohtml.py
Original file line number Diff line number Diff line change
@@ -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__':
Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/traverse.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion redfish_service_validator/validateResource.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_catalog.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/testdata/payloads/system-bad-additional.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
2 changes: 1 addition & 1 deletion tests/testdata/schemas/ExampleResource_v1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!--# -->
<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
<!--# available at http://www.dmtf.org/standards/redfish -->
<!--# Copyright 2014-2018 DMTF. -->
<!--# Copyright 2017-2024 DMTF. -->
<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
<!--################################################################################ -->
<!---->
Expand Down

0 comments on commit a9c571e

Please sign in to comment.