diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f8833a3..218155c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Change Log All notable changes to this project will be documented in this file. +## Wazuh Chef v3.12.0_7.6.1 + +### Added + +- Update to Wazuh version 3.12.0_7.6.1 + +- Upgrade to NodeJS v10 ([@xr09](https://github.com/xr09)) [PR#92](https://github.com/wazuh/wazuh-chef/pull/92) + ## Wazuh Chef v3.11.4_7.6.1 ### Added diff --git a/cookbooks/wazuh_agent/attributes/version.rb b/cookbooks/wazuh_agent/attributes/version.rb index 1e9fc233..c1d7afb8 100644 --- a/cookbooks/wazuh_agent/attributes/version.rb +++ b/cookbooks/wazuh_agent/attributes/version.rb @@ -1,2 +1,2 @@ -default['wazuh-agent']['version'] = "3.11.4" +default['wazuh-agent']['version'] = "3.12.0" diff --git a/cookbooks/wazuh_elastic/attributes/versions.rb b/cookbooks/wazuh_elastic/attributes/versions.rb index 1a269115..0bc87891 100644 --- a/cookbooks/wazuh_elastic/attributes/versions.rb +++ b/cookbooks/wazuh_elastic/attributes/versions.rb @@ -1,3 +1,3 @@ default['wazuh-elastic']['elastic_stack_version'] = '7.6.1' -default['wazuh-elastic']['wazuh_app_version'] = "3.11.4_7.6.1" -default['wazuh-elastic']['extensions_version'] = "v3.11.4" \ No newline at end of file +default['wazuh-elastic']['wazuh_app_version'] = "3.12.0_7.6.1" +default['wazuh-elastic']['extensions_version'] = "v3.12.0" \ No newline at end of file diff --git a/cookbooks/wazuh_filebeat/attributes/versions.rb b/cookbooks/wazuh_filebeat/attributes/versions.rb index bec5d037..8d5a163a 100644 --- a/cookbooks/wazuh_filebeat/attributes/versions.rb +++ b/cookbooks/wazuh_filebeat/attributes/versions.rb @@ -1,4 +1,4 @@ default['filebeat']['elastic_stack_version'] = '7.6.1' -default['filebeat']['wazuh_app_version'] = "3.11.4_7.6.1" -default['filebeat']['extensions_version'] = "v3.11.4" +default['filebeat']['wazuh_app_version'] = "3.12.0_7.6.1" +default['filebeat']['extensions_version'] = "v3.12.0" default['filebeat']['wazuh_filebeat_module'] = "wazuh-filebeat-0.1.tar.gz" diff --git a/cookbooks/wazuh_manager/attributes/versions.rb b/cookbooks/wazuh_manager/attributes/versions.rb index 3ca34ec9..7a862665 100644 --- a/cookbooks/wazuh_manager/attributes/versions.rb +++ b/cookbooks/wazuh_manager/attributes/versions.rb @@ -1 +1 @@ -default['wazuh-manager']['version'] = "3.11.4" \ No newline at end of file +default['wazuh-manager']['version'] = "3.12.0" \ No newline at end of file diff --git a/cookbooks/wazuh_manager/recipes/wazuh_api.rb b/cookbooks/wazuh_manager/recipes/wazuh_api.rb index 5b4f66b7..a7cc9cfe 100644 --- a/cookbooks/wazuh_manager/recipes/wazuh_api.rb +++ b/cookbooks/wazuh_manager/recipes/wazuh_api.rb @@ -4,7 +4,7 @@ bash 'Install nodejs' do code <<-EOH cd /tmp && - curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - + curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - EOH not_if { ::File.exist?('/etc/apt/sources.list.d/nodesource.list') } end @@ -18,7 +18,7 @@ bash 'Install nodejs' do code <<-EOH cd /tmp && - curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - + curl --silent --location https://rpm.nodesource.com/setup_10.x | bash - EOH not_if { ::File.exist?('/etc/yum.repos.d/nodesource-el.repo') } end