chore(release): version 3.7.0 (#2558)

This commit is contained in:
Sergio Garcia
2023-07-06 21:17:21 +02:00
committed by GitHub
parent 676e60afb7
commit 858de64f8e
3 changed files with 6 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ from prowler.lib.logger import logger
timestamp = datetime.today()
timestamp_utc = datetime.now(timezone.utc).replace(tzinfo=timezone.utc)
prowler_version = "3.6.1"
prowler_version = "3.7.0"
boto3_user_agent_extra = "APN_1826889"
html_logo_url = "https://github.com/prowler-cloud/prowler/"
html_logo_img = "https://user-images.githubusercontent.com/3985464/113734260-7ba06900-96fb-11eb-82bc-d4f68a1e2710.png"

View File

@@ -22,7 +22,7 @@ packages = [
{include = "prowler"}
]
readme = "README.md"
version = "3.6.1"
version = "3.7.0"
[tool.poetry.dependencies]
alive-progress = "3.1.4"

View File

@@ -1026,12 +1026,12 @@ class Test_Outputs:
product=Product(
language="en",
name="Prowler",
version="3.6.1",
version=prowler_version,
vendor_name="Prowler/ProwlerPro",
feature=Feature(
name="iam_disable_30_days_credentials",
uid="iam_disable_30_days_credentials",
version="3.6.1",
version=prowler_version,
),
),
version="1.0.0-rc.3",
@@ -1054,7 +1054,8 @@ class Test_Outputs:
class_name="Security Finding",
)
output_options = mock.MagicMock()
print(fill_json_ocsf(input_audit_info, finding, output_options))
print(expected)
assert fill_json_ocsf(input_audit_info, finding, output_options) == expected
@mock_s3