diff --git a/CHANGELOG.md b/CHANGELOG.md index ecf48f8..1b55807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 4.0.0 (When Released) + +* Enhancement: [#49][]: Update default database to postgresql +* Enhancement: [#58][]: Update mysql dependency to ~> 6.0 + +## 3.14.0 + +* Bugfix: [#55][]: Lock mysql dependency to ~> 5.0 +* Enhancement: [#46][]: Ability to set all property values instead of only the plugins + ## 3.13.0 * Bugfix: [#43][]: Fix for "sh: 'rsync' no such file or directory" on RHEL-like systems (install rsync package in backup_client recipe) @@ -438,4 +448,8 @@ To switch to new defaults: [#43]: https://github.com/bflad/chef-stash/issues/43 [#44]: https://github.com/bflad/chef-stash/issues/44 [#45]: https://github.com/bflad/chef-stash/issues/45 +[#46]: https://github.com/bflad/chef-stash/issues/46 [#47]: https://github.com/bflad/chef-stash/issues/47 +[#49]: https://github.com/bflad/chef-stash/issues/49 +[#55]: https://github.com/bflad/chef-stash/issues/55 +[#58]: https://github.com/bflad/chef-stash/issues/58 diff --git a/README.md b/README.md index aea0ee2..ac85951 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,8 @@ weekday | Day of week | String | * ### Stash Database Attributes +_The default database will be changing to postgresql when cookbook 4.x is released._ + All of these `node['stash']['database']` attributes are overridden by `stash/stash` encrypted data bag (Hosted Chef) or data bag (Chef Solo), if it exists Attribute | Description | Type | Default diff --git a/metadata.rb b/metadata.rb index d8ab94f..e01b74c 100644 --- a/metadata.rb +++ b/metadata.rb @@ -4,7 +4,7 @@ license 'Apache 2.0' description 'Installs/Configures Atlassian Stash' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '3.13.0' +version '3.14.0' recipe 'stash', 'Installs/Configures Atlassian Stash' recipe 'stash::apache2', 'Installs/Configures Apache 2 proxy for Stash' recipe 'stash::backup_client', 'Installs/Configures Atlassian Stash Backup Client'