diff --git a/CHANGELOG.md b/CHANGELOG.md index b52c2f7..8d64153 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,3 +7,12 @@ This file is used to list changes made in each version of the chef-falcon cookbo Initial release. - Linux support with API installation method + +## 0.1.1 + +**Full Changelog**: https://github.com/CrowdStrike/chef-falcon/compare/0.1.0...0.1.1 + +- Fix cookbook quality issues by @carlosmmatos in https://github.com/CrowdStrike/chef-falcon/pull/18 +- Added badge to README for cookbook in supermarket by @carlosmmatos in https://github.com/CrowdStrike/chef-falcon/pull/19 +- Update readme to include full links by @carlosmmatos in https://github.com/CrowdStrike/chef-falcon/pull/20 +- Integration Testing by @carlosmmatos in https://github.com/CrowdStrike/chef-falcon/pull/21 diff --git a/libraries/falconapi.rb b/libraries/falconapi.rb index 6198d54..5615969 100644 --- a/libraries/falconapi.rb +++ b/libraries/falconapi.rb @@ -40,7 +40,7 @@ def initialize(falcon_cloud: nil, bearer_token: nil, client_id: nil, client_secr end @client_id = client_id @client_secret = client_secret - @version = '0.1.0' + @version = '0.1.1' end # Returns the version of the sensor installer for the given policy and platform name. diff --git a/metadata.rb b/metadata.rb index 7eb66a1..b48ffbc 100644 --- a/metadata.rb +++ b/metadata.rb @@ -3,7 +3,7 @@ maintainer_email 'cloud-integrations@crowdstrike.com' license 'GPL-3.0' description 'Installs/Configures Falcon sensor' -version '0.1.0' +version '0.1.1' chef_version '>= 16.0' # The `issues_url` points to the location where issues for this cookbook are diff --git a/resources/install.rb b/resources/install.rb index 6533004..0fbb196 100644 --- a/resources/install.rb +++ b/resources/install.rb @@ -58,7 +58,7 @@ def insync?(new_resource, desired_version) remote_file 'falcon' do path sensor_info['file_path'] source sensor_info['url'] - headers({ 'Authorization' => "Bearer #{sensor_info['bearer_token']}", 'User-Agent' => 'crowdstrike-chef/0.1.0' }) + headers({ 'Authorization' => "Bearer #{sensor_info['bearer_token']}", 'User-Agent' => 'crowdstrike-chef/0.1.1' }) action :create end end diff --git a/test/cookbooks/test/metadata.rb b/test/cookbooks/test/metadata.rb index 5279a09..ea9d486 100644 --- a/test/cookbooks/test/metadata.rb +++ b/test/cookbooks/test/metadata.rb @@ -1,5 +1,5 @@ name 'test' -version '0.1.0' +version '0.1.1' chef_version '>= 16.0' depends 'falcon'