Update openssl cookbook
This commit is contained in:
@@ -1,28 +1,73 @@
|
||||
openssl Cookbook CHANGELOG
|
||||
==========================
|
||||
# openssl Cookbook CHANGELOG
|
||||
|
||||
This file is used to list changes made in each version of the openssl cookbook.
|
||||
|
||||
v4.4.0 (2015-08-28)
|
||||
-------------------
|
||||
## 7.0.1 (2017-03-21)
|
||||
|
||||
- Fix compatibility with Chef 12.5.1
|
||||
|
||||
## 7.0.0 (2017-03-06)
|
||||
|
||||
- Converted LWRPs to custom resources, increasing the chef-client dependency to 12.5+. This fixes the bus where each resource notified on every run even if it didn't actually update the files on disk.
|
||||
- Added testing for Chef 13
|
||||
- Test with Local Delivery instead of Rake
|
||||
|
||||
## 6.1.1 (2017-01-19)
|
||||
|
||||
- Resolve deprecation warnings in chefspec
|
||||
- Use proper ::File class and fix ^2 validation of dhparam key length
|
||||
- Disable .zero? in cookstyle for now
|
||||
|
||||
## 6.1.0 (2017-01-18)
|
||||
|
||||
- [#37] Support for Subject Alternative Names on generated self-signed certificates
|
||||
- rubocop
|
||||
- Cookstyle fixes
|
||||
|
||||
## 6.0.0 (2016-09-08)
|
||||
|
||||
- Update the minimum chef release to 12.1
|
||||
|
||||
## 5.0.1 (2016-09-01)
|
||||
- Update docs from node.normal as node.set has been deprecated
|
||||
- Testing updates
|
||||
|
||||
## 5.0.0 (2016-08-27)
|
||||
|
||||
- Remove the need for the chef-sugar cookbook
|
||||
- Remove the default['openssl']['packages'] attribute in the upgrades recipe and instead use the correct openssl packages based on platform
|
||||
- Remove support for Debian 6 and Ubuntu 10.04 in the upgrade recipe
|
||||
- Add support for Fedora and Suse in the upgrade recipe
|
||||
- Prevent errors with unset variable in error raising within the random password helper
|
||||
- Add cookstyle and resolve all warnings
|
||||
- Add testing, contributing, and maintainers documentation
|
||||
- Add integration testing in Travis CI with kitchen-dokken
|
||||
- Add issues_url, source_url and chef_version metadata
|
||||
- Update the requirements section of the README
|
||||
- Update the Chefspecs to avoid errors and run using caching for faster runs
|
||||
- Add issues and PR templates for Github
|
||||
|
||||
## v4.4.0 (2015-08-28)
|
||||
|
||||
- NEW: x509 certificates are now signed via SHA-256 instead of SHA-1
|
||||
- FIX: gen_dhparam error now correctly fails with TypeError instead of ArgumentError if Generator argument isn't an integer
|
||||
|
||||
v4.3.2 (2015-08-01)
|
||||
-------------------
|
||||
## v4.3.2 (2015-08-01)
|
||||
|
||||
- FIX: Updated changelog
|
||||
|
||||
v4.3 (2015-08-01)
|
||||
-------------------
|
||||
## v4.3 (2015-08-01)
|
||||
|
||||
- NEW: Add rsa_key lwrp
|
||||
- FIX: dhparam lwrp now correctly honors the generator parameter
|
||||
|
||||
v4.2 (2015-06-23)
|
||||
-------------------
|
||||
## v4.2 (2015-06-23)
|
||||
|
||||
- NEW: Add dhparam lwrp
|
||||
- FIX: x509 lwrp now updates resource count correctly
|
||||
|
||||
v4.1.2 (2015-06-20)
|
||||
-------------------
|
||||
## v4.1.2 (2015-06-20)
|
||||
|
||||
- Add Serverspec suite
|
||||
- Removed update suite from .kitchen.yml
|
||||
- Add explicit license to test cookbook recipes
|
||||
@@ -31,41 +76,42 @@ v4.1.2 (2015-06-20)
|
||||
- Add helper library
|
||||
- Update x509 LWRP to verify existing keys, if specified
|
||||
|
||||
v4.1.1 (2015-06-11)
|
||||
-------------------
|
||||
## v4.1.1 (2015-06-11)
|
||||
|
||||
- README.md fixes
|
||||
|
||||
v4.1.0 (2015-06-11)
|
||||
-------------------
|
||||
## v4.1.0 (2015-06-11)
|
||||
|
||||
- Add new random_password Mixin (Thanks, Seth!)
|
||||
- Rewritten README.md
|
||||
- Refactor specs
|
||||
- Clear Rubocop violations
|
||||
|
||||
v4.0.0 (2015-02-19)
|
||||
-------------------
|
||||
## v4.0.0 (2015-02-19)
|
||||
|
||||
- Reverting to Opscode module namespace
|
||||
|
||||
v3.0.2 (2015-12-18)
|
||||
-------------------
|
||||
## v3.0.2 (2015-12-18)
|
||||
|
||||
- Accidently released 2.0.2 as 3.0.2
|
||||
- Re-namespaced `Opscode::OpenSSL::Password` module as `Chef::OpenSSL::Password`
|
||||
|
||||
v2.0.2 (2014-12-30)
|
||||
-------------------
|
||||
## v2.0.2 (2014-12-30)
|
||||
|
||||
- Call cert.to_pem before recipe DSL
|
||||
|
||||
v2.0.0 (2014-06-11)
|
||||
-------------------
|
||||
## v2.0.0 (2014-06-11)
|
||||
|
||||
- #1 - **[COOK-847](https://tickets.chef.io/browse/COOK-847)** - Add LWRP for generating self signed certs
|
||||
- #4 - **[COOK-4715](https://tickets.chef.io/browse/COOK-4715)** - add upgrade recipe and complete test harness
|
||||
- # 1 - **[COOK-847](https://tickets.chef.io/browse/COOK-847)** - Add LWRP for generating self signed certs
|
||||
|
||||
- # 4 - **[COOK-4715](https://tickets.chef.io/browse/COOK-4715)** - add upgrade recipe and complete test harness
|
||||
|
||||
## v1.1.0
|
||||
|
||||
v1.1.0
|
||||
------
|
||||
### Improvement
|
||||
|
||||
- **[COOK-3222](https://tickets.chef.io/browse/COOK-3222)** - Allow setting length for `secure_password`
|
||||
|
||||
v1.0.2
|
||||
------
|
||||
## v1.0.2
|
||||
|
||||
- Add name attribute to metadata
|
||||
|
||||
Reference in New Issue
Block a user