summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Chef-15: Remove copyright dateslcg/remove-copyright-dates-chef-15Lamont Granquist2020-04-131389-1391/+1391
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version to 15.10.1 by Chef Expeditorv15.10.1Chef Expeditor2020-04-137-19/+20
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #9650 from chef/bootstrap_version_fixTim Smith2020-04-133-7/+8
|\ | | | | Fix knife bootstrap_version CLI option overriding config option
| * fix specbootstrap_version_fixLamont Granquist2020-04-101-2/+2
| | | | | | | | | | | | | | the bootstrap context isn't responsible for merging so this was always testing the wrong behavior Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * Fix knife bootstrap_version CLI option overriding config optionLamont Granquist2020-04-102-5/+6
| | | | | | | | | | | | | | | | closes #8834 @ccrebolder this should be all that is necessary to fix your issue. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version to 15.10.0 by Chef Expeditorv15.10.0Chef Expeditor2020-04-107-19/+20
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #9651 from chef/arm_helperTim Smith2020-04-103-9/+20
|\ \ | |/ |/| Add arm? helper to chef-utils
| * This this one lineTim Smith2020-04-101-2/+1
| | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * Remove extra wishful helpersTim Smith2020-04-101-3/+0
| | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * Add arm? helper to chef-utilsTim Smith2020-04-103-9/+24
|/ | | | | | It's tagged as first shipping in chef 15.10 since I plan to backport this and that'll make sense in the docs. Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 15.9.23 by Chef Expeditorv15.9.23Chef Expeditor2020-04-087-19/+20
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 15.9.22 by Chef Expeditorv15.9.22Chef Expeditor2020-04-087-19/+20
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #9630 from chef/typosTim Smith2020-04-08109-182/+182
|\ | | | | Spell checking in comments and log messages
| * Revert sometyposVivek Singh2020-04-082-3/+3
| | | | | | | | Signed-off-by: Vivek Singh <vivek.singh@msystechnologies.com>
| * Add more typo fixesVivek Singh2020-04-0813-56/+56
| | | | | | | | Signed-off-by: Vivek Singh <vivek.singh@msystechnologies.com>
| * some spec typosVivek Singh2020-04-0843-59/+59
| | | | | | | | Signed-off-by: Vivek Singh <vivek.singh@msystechnologies.com>
| * Revert someVivek Singh2020-04-082-2/+2
| | | | | | | | Signed-off-by: Vivek Singh <vivek.singh@msystechnologies.com>
| * Fix typoVivek Singh2020-04-0859-78/+78
| | | | | | | | Signed-off-by: Vivek Singh <vivek.singh@msystechnologies.com>
* | Merge pull request #9631 from chef/sensitive_systemdTim Smith2020-04-081-0/+1
|\ \ | | | | | | Fixed systemd_unit not respecting sensitive property
| * | Removed unwanted codesensitive_systemdsanga172020-04-081-3/+0
| | | | | | | | | | | | Signed-off-by: sanga17 <sausekar@msystechnologies.com>
| * | Fixed systemd_unit not respecting sensitive propertysanga172020-04-082-0/+4
| |/ | | | | | | Signed-off-by: sanga17 <sausekar@msystechnologies.com>
* | Bump version to 15.9.21 by Chef Expeditorv15.9.21Chef Expeditor2020-04-087-19/+20
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #9629 from chef/bump_inspec_15Tim Smith2020-04-082-23/+23
|\ \ | |/ |/| Update InSpec to 4.18.104
| * Update InSpec to 4.18.104Tim Smith2020-04-082-23/+23
|/ | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 15.9.20 by Chef Expeditorv15.9.20Chef Expeditor2020-04-077-19/+20
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 15.9.19 by Chef Expeditorv15.9.19Chef Expeditor2020-04-077-19/+20
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #9613 from chef/btm/15-really-skip-reboot-testBryan McLellan2020-04-061-5/+6
|\ | | | | 15: Really skip the reboot pending func test if a reboot is pending
| * Really skip the reboot pending func test if a reboot is pendingBryan McLellan2020-04-061-5/+6
| | | | | | | | | | | | This looks like it never worked but we happened to never run into it until we added a desktop platform to the pipeline. Signed-off-by: Bryan McLellan <btm@loftninjas.org>
* | Merge pull request #9604 from chef/btm/15-fix-win-func-testBryan McLellan2020-04-061-9/+74
|\ \ | |/ |/| 15 backport: Improved Ruby download/install for functional tests
| * Download and verify the Ruby installer, then move into placebtm/15-fix-win-func-testBryan McLellan2020-04-061-14/+33
| | | | | | | | | | | | | | This should reduce or remove race conditions while downloading the same file on multiple container instances. Signed-off-by: Bryan McLellan <btm@loftninjas.org>
| * Improved Ruby download/install for functional testsBryan McLellan2020-04-051-9/+55
|/ | | | | | | | | | | | Adds more error checking and avoids trying to download Ruby if for some reason it already exists on disk and matches the SHA256 hash. The primary issue discovered when troubleshooting this script was that aws.exe was running asynchronous. That was 'fixed' with '| Out-Null'. Backport of #9603 Signed-off-by: Bryan McLellan <btm@loftninjas.org>
* Bump version to 15.9.18 by Chef Expeditorv15.9.18Chef Expeditor2020-04-047-18/+26
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #9592 from chef/btm/15-fix-windows-func-testTim Smith2020-04-041-4/+4
|\ | | | | 15: Use $env:temp instead of c:/ for functional tests
| * Use $env:temp instead of c:/btm/15-fix-windows-func-testBryan McLellan2020-04-031-4/+4
| | | | | | | | | | | | The drive root has more restrictive permissions Signed-off-by: Bryan McLellan <btm@loftninjas.org>
* | Update CHANGELOG.md to reflect the promotion of 15.9.17Chef Expeditor2020-04-032-38/+35
|/ | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 15.9.17 by Chef Expeditorv15.9.17Chef Expeditor2020-04-037-19/+20
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #9590 from chef/2004_againTim Smith2020-04-032-0/+5
|\ | | | | Add Ubuntu 20.04 back
| * Add Ubuntu 20.04 backTim Smith2020-04-032-0/+5
|/ | | | | | We've updated our testers Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 15.9.16 by Chef Expeditorv15.9.16Chef Expeditor2020-04-037-19/+20
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #9587 from chef/swap_ubuntuTim Smith2020-04-032-3/+4
|\ | | | | Swap Ubuntu 20.04 for 18.04 aarch64
| * Swap Ubuntu 20.04 for 18.04 aarch64Tim Smith2020-04-032-3/+4
|/ | | | | | 20.04 has testing issues right now. Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 15.9.15 by Chef Expeditorv15.9.15Chef Expeditor2020-04-027-19/+20
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #9583 from chef/ubuntu_2004Tim Smith2020-04-021-0/+1
|\ | | | | Add Ubuntu 20.04 validation / package creation
| * Add Ubuntu 20.04 validation / package creationTim Smith2020-04-021-0/+1
| | | | | | | | | | | | BOOM! Signed-off-by: Tim Smith <tsmith@chef.io>
* | Merge pull request #9585 from chef/more_15_notesTim Smith2020-04-021-2/+17
|\ \ | |/ |/| Add security notes for 15.9
| * Add security notes for 15.9Tim Smith2020-04-021-2/+17
|/ | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Merge pull request #9580 from chef/159_notesTim Smith2020-04-021-0/+14
|\ | | | | Update the 15.9 release notes
| * Update RELEASE_NOTES.md Tim Smith2020-04-021-1/+1
| | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io> Co-Authored-By: Ian Maddaus <IanMadd@users.noreply.github.com>
| * Update the 15.9 release notes159_notesTim Smith2020-04-021-0/+14
| | | | | | | | | | | | I added more Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 15.9.14 by Chef Expeditorv15.9.14Chef Expeditor2020-04-027-19/+20
|/ | | | Obvious fix; these changes are the result of automation not creative thinking.