diff --git a/CHANGELOG/current/Add_timeout_parameter_to_arachni.md b/CHANGELOG/2.2.0/Add_timeout_parameter_to_arachni.md similarity index 100% rename from CHANGELOG/current/Add_timeout_parameter_to_arachni.md rename to CHANGELOG/2.2.0/Add_timeout_parameter_to_arachni.md diff --git a/CHANGELOG/current/add w3af.md b/CHANGELOG/2.2.0/add w3af.md similarity index 100% rename from CHANGELOG/current/add w3af.md rename to CHANGELOG/2.2.0/add w3af.md diff --git a/CHANGELOG/current/add_ignore_info_and_hostname_resolution.md b/CHANGELOG/2.2.0/add_ignore_info_and_hostname_resolution.md similarity index 100% rename from CHANGELOG/current/add_ignore_info_and_hostname_resolution.md rename to CHANGELOG/2.2.0/add_ignore_info_and_hostname_resolution.md diff --git a/CHANGELOG/2.2.0/date.md b/CHANGELOG/2.2.0/date.md new file mode 100644 index 00000000..f4ce409c --- /dev/null +++ b/CHANGELOG/2.2.0/date.md @@ -0,0 +1 @@ +Jul 25th, 2022 diff --git a/CHANGELOG/current/fix_exectuors.md b/CHANGELOG/2.2.0/fix_exectuors.md similarity index 100% rename from CHANGELOG/current/fix_exectuors.md rename to CHANGELOG/2.2.0/fix_exectuors.md diff --git a/CHANGELOG/current/fix_logs.md b/CHANGELOG/2.2.0/fix_logs.md similarity index 100% rename from CHANGELOG/current/fix_logs.md rename to CHANGELOG/2.2.0/fix_logs.md diff --git a/CHANGELOG/current/remove_ws.md b/CHANGELOG/2.2.0/remove_ws.md similarity index 100% rename from CHANGELOG/current/remove_ws.md rename to CHANGELOG/2.2.0/remove_ws.md diff --git a/CHANGELOG/current/send_parameters_at_connection_time.md b/CHANGELOG/2.2.0/send_parameters_at_connection_time.md similarity index 100% rename from CHANGELOG/current/send_parameters_at_connection_time.md rename to CHANGELOG/2.2.0/send_parameters_at_connection_time.md diff --git a/RELEASE.md b/RELEASE.md index fbfc93a7..2cdc43f8 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,16 @@ +2.2.0 [Jul 25th, 2022]: +--- + * Add timeout parameter to arachni's executor + * Add python2.7, w3af and its dependencies to docker image + * Add ignore_info and hostname_resolution options for most executors. + * Nessus now list in the logs the available templates and uses posixpath.join instead of concat strings. +Nikto now uses only requieres TARGET_URL argument. + * Fix logs and change .format to fstrings + * Remove ws from dispatcher.yaml. + * Now faraday-dispatcher send the parameters of the executors when it +connects to faraday server. Also it checks if there are new enviroment +variables defined in the manifest file and warn the user. + 2.1.3 [Dec 13th, 2021]: --- * Add --api-token --random-user-agent to wpscan diff --git a/faraday_agent_dispatcher/__init__.py b/faraday_agent_dispatcher/__init__.py index b8490f2c..449e5973 100644 --- a/faraday_agent_dispatcher/__init__.py +++ b/faraday_agent_dispatcher/__init__.py @@ -20,4 +20,4 @@ __author__ = """Faraday Development Team""" __email__ = "devel@infobytesec.com" -__version__ = "2.1.3" +__version__ = "2.2.0" diff --git a/setup.py b/setup.py index 32e675b1..781ec2ba 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ "syslog_rfc5424_formatter", "requests", "itsdangerous", - "faraday-plugins>=1.5.8", + "faraday-plugins>=1.6.8", "python-owasp-zap-v2.4", "python-gvm", "faraday_agent_parameters_types>=1.0.0",