diff --git a/CHANGELOG.md b/CHANGELOG.md index 0690dfb..9058a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,26 @@ filebeat CHANGELOG This file is used to list changes made in each version of the filebeat cookbook. +0.3.2 +----- + +- Prerak Shah - Fixed Travis Errors + +- Prerak Shah - Fixed Unit Tests + +- Al Lefebvre - Added missing attribute for exclude_files + +- Luke Lowery - Fixing issue with patterns and older versions of Ruby + Updated YAML engine to adhere to ruby style guide + +- Prerak Shah - Fixed default Install paths for windows + +- Martin Smith - Respect service flags on package installation + +- Azat Khadiev - Support spaces in file path for Windows + + + 0.3.1 ----- diff --git a/README.md b/README.md index f8fe700..ce23271 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ filebeat Cookbook ================ -[![Cookbook](http://img.shields.io/badge/cookbook-v0.3.1-green.svg)](https://github.com/vkhatri/chef-filebeat) [![Build Status](https://travis-ci.org/vkhatri/chef-filebeat.svg?branch=master)](https://travis-ci.org/vkhatri/chef-filebeat) +[![Cookbook](http://img.shields.io/badge/cookbook-v0.3.2-green.svg)](https://github.com/vkhatri/chef-filebeat) [![Build Status](https://travis-ci.org/vkhatri/chef-filebeat.svg?branch=master)](https://travis-ci.org/vkhatri/chef-filebeat) This is a [Chef] cookbook to manage [Filebeat]. @@ -12,13 +12,13 @@ This is a [Chef] cookbook to manage [Filebeat]. ## Most Recent Release ```ruby -cookbook 'filebeat', '~> 0.3.1' +cookbook 'filebeat', '~> 0.3.2' ``` ## From Git ```ruby -cookbook 'filebeat', github: 'vkhatri/chef-filebeat', tag: "v0.3.1" +cookbook 'filebeat', github: 'vkhatri/chef-filebeat', tag: "v0.3.2" ``` ## Repository @@ -95,7 +95,7 @@ end - *include_lines* (optional, Array) - A list of regular expressions to match the lines that you want Filebeat to include. Filebeat exports only the lines that match a regular expression in the list. By default, all lines are exported. - *exclude_lines* (optional, Array) - A list of regular expressions to match the lines that you want Filebeat to exclude. Filebeat drops any lines that match a regular expression in the list. By default, no lines are dropped. - *multiline* (optional, Hash) - Multiline configuration hash. Options: `pattern`: , `negate`: [true/false], `match`: [before/after] -- *exclude_files* (optional, Array) - A list of regular expressions to match the files that you want Filebeat prospector instance to exclude. +- *exclude_files* (optional, Array) - A list of regular expressions to match the files that you want Filebeat prospector instance to exclude. ## How to Add Filebeat Output via Node Attribute diff --git a/metadata.rb b/metadata.rb index f2af5cb..78284d4 100644 --- a/metadata.rb +++ b/metadata.rb @@ -4,7 +4,7 @@ license 'Apache 2.0' description 'Installs/Configures Elastic Filebeat' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '0.3.1' +version '0.3.2' source_url 'https://github.com/vkhatri/chef-filebeat' if respond_to?(:source_url) issues_url 'https://github.com/vkhatri/chef-filebeat/issues' if respond_to?(:issues_url)