summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Loosen the win32-cerstore and win32-service dependenciesloosen_win32_depsTim Smith2019-03-132-6/+6
| | | | | | Bring in the updated win32-certstore gem and allow bringing in the updated service gem later on. Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 14.11.22 by Chef Expeditorv14.11.22Chef Expeditor2019-03-095-11/+19
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #8274 from chef/more_windows_cert_14Tim Smith2019-03-083-18/+111
|\ | | | | windows_certificate: Import nested certificates while importing P7B certs
| * Adding support to import nested certificates through PFX certificatemore_windows_cert_14Nimesh-Msys2019-03-041-1/+6
| | | | | | | | | | | | | | | | - The following case was also identified in case of PFX certificate - Minor changes to allow import of ca_certs if they are present - Supporting changes have been sent in PR: https://github.com/chef/win32-certstore/pull/53 Signed-off-by: Nimesh-Msys <nimesh.patni@msystechnologies.com>
| * windows_certificate: Import root/nested certificates while importing P7B ↵Nimesh-Msys2019-03-043-17/+105
| | | | | | | | | | | | | | | | | | | | certificates - P7B might contain multiple certificates and we should not miss the internal one while import. - Added test cases and ensured chef-style - Fixes: MSYS-977 Signed-off-by: Nimesh-Msys <nimesh.patni@msystechnologies.com>
* | Add 13.9 - 13.12 to the changelogTim Smith2019-03-081-1/+81
| |
* | Add the missing Chef 13 release notesTim Smith2019-03-081-3/+253
| |
* | Update CHANGELOG.md to reflect the promotion of 14.11.21Chef Expeditor2019-03-072-33/+30
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Bump version to 14.11.21 by Chef Expeditorv14.11.21Chef Expeditor2019-03-065-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8272 from chef/14_11_release_notesTim Smith2019-03-062-1/+55
|\ \ | | | | | | Update Rubygems to 2.7.9 + Add release notes for Chef 14.11
| * | Bump Rubygems to 2.7.9 and add that to the release notesTim Smith2019-03-062-3/+12
| | | | | | | | | | | | | | | | | | Use the latest / greatest Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Add release notes for Chef 14.11Tim Smith2019-03-061-0/+45
| |/ | | | | | | | | | | There may be more to add here, but this is 90% complete at least. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 14.11.20 by Chef Expeditorv14.11.20Chef Expeditor2019-03-055-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8273 from chef/aix_mountTim Smith2019-03-042-2/+10
|\ \ | |/ |/| mount: Add proper new lines when on AIX to prevent failures
| * Ensure that a new blank line `\n\n` is added when appending a new mount ↵Gavin Reynolds2019-03-042-2/+10
| | | | | | | | | | | | | | | | point for AIX. Add existing mount to enable spec Signed-off-by: Gavin Reynolds <gavin@chef.io>
| * fix aix mount bugShaun Mouton2019-03-041-1/+1
|/ | | | | | | | | Without a newline separating entries, AIX will not allow the entry preceding the one managed by Chef to be mounted anymore - this appears not to be an issue for already-mounted filesystems. See Zendesk ticket 20952 for more details. Signed-off-by: Shaun Mouton <smouton@chef.io>
* Bump version to 14.11.19 by Chef Expeditorv14.11.19Chef Expeditor2019-03-045-11/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #8270 from chef/cacert_14Tim Smith2019-03-041-1/+1
|\ | | | | Update cacerts to 2019-01-22 file
| * Update cacerts to 2019-01-22 fileTim Smith2019-03-041-1/+1
|/ | | | | | | | | | | | | | Adds these new roots: GTS Root R1 GTS Root R2 GTS Root R3 GTS Root R4 UCA Global G2 Root UCA Extended Validation Root Certigna Root CA Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 14.11.18 by Chef Expeditorv14.11.18Chef Expeditor2019-03-045-11/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #8268 from chef/inspec-core_371_14Tim Smith2019-03-042-13/+17
|\ | | | | Update InSpec to 3.7.1
| * Update InSpec to 3.7.1Tim Smith2019-03-042-13/+17
| | | | | | | | | | | | Bump all other deps as well Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 14.11.17 by Chef Expeditorv14.11.17Chef Expeditor2019-03-045-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8267 from chef/cert_14_moreTim Smith2019-03-043-28/+73
|\ \ | | | | | | windows_certificate: Add support to import Base 64 encoded CER certificates
| * | Fetching OpenSSL::X509::Certificate object without shell interactions.Nimesh-Msys2019-03-042-38/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Previously, we were building a new OpenSSL::X509::Certificate object with PEM string contents. - To get this content, we were using openssl utility and were converting all certificate types into PEM - And were extracting the PEM contents out of resulting data. - It could directly be done via correct usage of applicable classes. - Reverted using Open3. It uses shell hence did not solved the purpose. Signed-off-by: Nimesh-Msys <nimesh.patni@msystechnologies.com>
| * | Minor fixes as per the review comments.Nimesh-Msys2019-03-041-17/+20
| | | | | | | | | | | | | | | | | | - Checking file formats by uisng ruby itself, instead of shelling it out. Signed-off-by: Nimesh-Msys <nimesh.patni@msystechnologies.com>
| * | Windows Certificate: Add support to import Base 64 encoded CER certificatesNimesh-Msys2019-03-043-1/+46
| |/ | | | | | | | | | | | | | | | | | | - Till now, cer certificates were only considered to be in binary format (DER) - They can also be base-64 encoded(PEM) - We should only append "inform DER" only if it is a binary certificate, otherwise, default ("inform PEM") would support base64 encoded certificates. - Added test caes - Ensured Chef style Signed-off-by: Nimesh-Msys <nimesh.patni@msystechnologies.com>
* | Bump version to 14.11.16 by Chef Expeditorv14.11.16Chef Expeditor2019-03-045-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8266 from chef/openssl_cve_bump_14Tim Smith2019-03-041-1/+1
|\ \ | | | | | | Update openssl to 1.0.2r
| * | Update openssl to 1.0.2rTim Smith2019-03-041-1/+1
| |/ | | | | | | | | | | This resolves a minor CVE that doesn't impact Chef, but should get fixed anyways. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 14.11.15 by Chef Expeditorv14.11.15Chef Expeditor2019-03-045-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Bump version to 14.11.14 by Chef Expeditorv14.11.14Chef Expeditor2019-03-045-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8265 from chef/name_14Tim Smith2019-03-0423-24/+24
|\ \ | | | | | | More consist descriptions for resource name properties
| * | More consist descriptions for resource name propertiesTim Smith2019-03-0423-24/+24
| |/ | | | | | | | | | | This better describes how a name property works. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Merge pull request #8264 from chef/openssl_14Tim Smith2019-03-042-12/+16
|\ \ | | | | | | openssl_dhparam: allow changing file mode on subsequent runs
| * | Simplify openssl_dhparam mode fixBryan McLellan2019-03-041-20/+11
| | | | | | | | | | | | | | | | | | Reduce this down to a single file resource Signed-off-by: Bryan McLellan <btm@loftninjas.org>
| * | update property for existing filedheerajd-msys2019-03-041-4/+14
| | | | | | | | | | | | Signed-off-by: dheerajd-msys <dheeraj.dubey@msystechnologies.com>
| * | chefstyle fixdheerajd-msys2019-03-041-1/+1
| | | | | | | | | | | | Signed-off-by: dheerajd-msys <dheeraj.dubey@msystechnologies.com>
| * | test case addeddheerajd-msys2019-03-042-10/+15
| | | | | | | | | | | | Signed-off-by: dheerajd-msys <dheeraj.dubey@msystechnologies.com>
| * | fix for resource properties updatedheerajd-msys2019-03-041-3/+1
| |/ | | | | | | Signed-off-by: dheerajd-msys <dheeraj.dubey@msystechnologies.com>
* | Bump version to 14.11.13 by Chef Expeditorv14.11.13Chef Expeditor2019-03-045-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8263 from chef/choco_14Tim Smith2019-03-042-1/+32
|\ \ | | | | | | chocolatey_package: use provided options when determing available options to allow using private sources
| * | chocolatey_package private source specVivek Singh2019-03-041-0/+29
| | | | | | | | | | | | Signed-off-by: Vivek Singh <vivek.singh@msystechnologies.com>
| * | Authentication on chocolatey_packageVivek Singh2019-03-042-1/+3
| |/ | | | | | | | | | | | | - Add missing options cmd args while fetching choco list. - Fixed rspec. Signed-off-by: Vivek Singh <vivek.singh@msystechnologies.com>
* | Bump version to 14.11.12 by Chef Expeditorv14.11.12Chef Expeditor2019-03-045-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8262 from chef/share_14Lamont Granquist2019-03-041-6/+9
|\ \ | | | | | | windows_share: Improve path comparison to prevent convering on each run
| * | Require Path helperJason Field2019-03-041-0/+1
| | | | | | | | | | | | Signed-off-by: Jason Field <jason@avon-lea.co.uk>
| * | Update windows_share.rbXorima2019-03-041-1/+1
| | | | | | | | | | | | | | | | | | Linting Fix Signed-off-by: Jason Field <jason@avon-lea.co.uk>
| * | Update Share Bug FixJason Field2019-03-041-6/+8
| |/ | | | | | | | | | | | | Fixes issue where updating a share will cause the share to be deleted but not re-created until chef is next run, and for chef to fail the run Signed-off-by: Jason Field <jason@avon-lea.co.uk>
* | Bump version to 14.11.11 by Chef Expeditorv14.11.11Chef Expeditor2019-03-045-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.