summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add Chef 14.12.9 release notesmissing_notesTim Smith2019-06-201-1/+13
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Update CHANGELOG.md to reflect the promotion of 14.13.11Chef Expeditor2019-05-302-28/+25
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Update release notes with thank you notesTim Smith2019-05-301-5/+5
| | | | | | Make sure we thank the folks that made this all possible. Signed-off-by: Tim Smith <tsmith@chef.io>
* Merge pull request #8622 from chef/release_notes_14Tim Smith2019-05-301-0/+41
|\ | | | | Add 14.13 release notes
| * Update RELEASE_NOTES.md Tim Smith2019-05-301-1/+1
| | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io> Co-Authored-By: mjingle <mjingle@users.noreply.github.com>
| * Update RELEASE_NOTES.md Tim Smith2019-05-301-1/+1
| | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io> Co-Authored-By: mjingle <mjingle@users.noreply.github.com>
| * Update RELEASE_NOTES.md Tim Smith2019-05-301-1/+1
| | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io> Co-Authored-By: mjingle <mjingle@users.noreply.github.com>
| * Update RELEASE_NOTES.md Tim Smith2019-05-301-1/+1
| | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io> Co-Authored-By: mjingle <mjingle@users.noreply.github.com>
| * Add 14.13 release notesTim Smith2019-05-301-0/+41
| | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 14.13.11 by Chef Expeditorv14.13.11hab-pkg-chef-clientChef Expeditor2019-05-305-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8621 from chef/btm/14-knife-fixesTim Smith2019-05-303-7/+10
|\ \ | |/ |/| 14: backport knife fixes
| * Trace output the actual bootstrap template filenameBryan McLellan2019-05-301-1/+1
| | | | | | | | | | | | | | | | We're currently logging the directory we found the bootstrap template in, but not actually the name of the file that we've chose. Minor change to fix that. Signed-off-by: Bryan McLellan <btm@loftninjas.org>
| * Raise knife exceptions when verbosity is 3 (-VVV)Bryan McLellan2019-05-302-6/+9
|/ | | | | | | | | Fixes #8433 When we added trace this check wasn't changed, which means you only saw the stacktrace for 2 (-VV) but not for 3 (-VVV) Signed-off-by: Bryan McLellan <btm@loftninjas.org>
* Bump version to 14.13.10 by Chef Expeditorv14.13.10Chef Expeditor2019-05-305-11/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #8610 from chef/backport_9Tim Smith2019-05-292-22/+137
|\ | | | | Fix for cron resource get confused by environment/property mismatch
| * Additional chefstyle fixesTim Smith2019-05-291-3/+3
| | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * - Added a warning in case user is using a `environment` for an entry that ↵vijaymmali19902019-05-292-25/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | can also be specified as a `property` - Added unit test cases - Ensured chefstyle - Added a warning in case user is using a `environment` for an entry that can also be specified as a `property` - Revert changes in order to pass chefstyle - Added a warning in case user is using a `environment` for an entry that can also be specified as a `property` - Added these changes in cron_different? method - Added unit test cases - Added some changes in cron.rb - It now throws error if user passes both environment with the {:SHELL, :HOME, :PATH, :MAILTO} and these properties itself. - It maintains idempotency. - Added Rspecs for this case. - Ensured chef-style. Signed-off-by: vijaymmali1990 <vijay.mali@msystechnologies.com>
* | Merge pull request #8615 from chef/ruby_prof_14Tim Smith2019-05-292-4/+3
|\ \ | | | | | | Pin ruby_prof to < 0.18 to prevent appveyor failures
| * | Pin ruby_prof to < 0.18 to prevent appveyor failuresTim Smith2019-05-292-4/+3
| | | | | | | | | | | | | | | | | | The gem isn't loading correctly on the windows hosts. Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Bump version to 14.13.9 by Chef Expeditorv14.13.9Chef Expeditor2019-05-305-11/+12
|/ / | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8613 from chef/backport_12Tim Smith2019-05-296-88/+125
|\ \ | | | | | | Fix for write permissions were not working properly on windows
| * | Minor fixes as per the review commentsbackport_12vijaymmali19902019-05-297-102/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Using proper verbiage for constant SUBFOLDERS_AND_FILES_ONLY - Source https://metacpan.org/pod/Win32::Security::ACE#dbmAceFlags - Minor DRY up and Fixes - Ensured chefstyle Signed-off-by: vijaymmali1990 <vijay.mali@msystechnologies.com>
| * | - Minor fixes to fix functional test casesvijaymmali19902019-05-294-16/+43
| | | | | | | | | | | | | | | | | | | | | | | | - Added functional test cases for deny_rights option - Ensured chef style - Fixes MSYS-958 Signed-off-by: vijaymmali1990 <vijay.mali@msystechnologies.com>
| * | Minor fixes as per the review commentsvijaymmali19902019-05-294-18/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Using proper verbiage for constant WRITE - Source https://docs.microsoft.com/en-us/dotnet/api/system.security.accesscontrol.filesystemrights?view=netframework-4.7.2#fields - Straight away using constants instead of it's fully qualified path - Minor DRY up and Fixes - Fixed functional test cases - Ensured chefstyle Signed-off-by: vijaymmali1990 <vijay.mali@msystechnologies.com>
| * | Fix for write permissions were not working properly on windowsvijaymmali19902019-05-293-5/+18
| | | | | | | | | | | | Signed-off-by: vijaymmali1990 <vijay.mali@msystechnologies.com>
* | | Bump version to 14.13.8 by Chef Expeditorv14.13.8Chef Expeditor2019-05-305-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Bump version to 14.13.7 by Chef Expeditorv14.13.7Chef Expeditor2019-05-305-11/+12
| |/ |/| | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8612 from chef/backport_11Tim Smith2019-05-291-12/+11
|\ \ | | | | | | fix knife diff exceptions
| * | fix knife diff exceptionsbackport_11Lamont Granquist2019-05-291-12/+11
| |/ | | | | | | | | | | closes #4189 Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Merge pull request #8611 from chef/backport_10Tim Smith2019-05-292-1/+24
|\ \ | | | | | | Use exports compatibile with /bin/sh in the bootstrap script
| * | Use exports compatibile with /bin/sh in the bootstrap scriptbackport_10markgibbons2019-05-292-1/+24
| |/ | | | | | | | | | | | | | | | | The bootstrap script is explicitly using /bin/sh. On some solaris servers the version of /bin/sh exporting environment variables using "export id=value" fails. The form "id=value export id" does work. Bootstrap fails when the wrong form is used. Signed-off-by: markgibbons <mark.gibbons@nordstrom.com>
* | Bump version to 14.13.6 by Chef Expeditorv14.13.6Chef Expeditor2019-05-295-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #8609 from chef/backport_8Tim Smith2019-05-293-11/+29
|\ \ | | | | | | Move the data_query, powershell and registry_helper DSLs up to universal
| * | Chef-15 DSL changesLamont Granquist2019-05-293-11/+29
| | | | | | | | | | | | | | | | | | | | | | | | Move the data_query, powershell and registry_helper DSLs up to universal. Move the `tagged?` helper into data_query for organizational purposes. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Bump version to 14.13.5 by Chef Expeditorv14.13.5Chef Expeditor2019-05-295-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Bump version to 14.13.4 by Chef Expeditorv14.13.4Chef Expeditor2019-05-295-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Merge pull request #8606 from chef/backport_5Tim Smith2019-05-291-2/+9
|\ \ \ | | | | | | | | Fixed empty value for knife status long output
| * | | Fixed empty value for knife status long outputVijay Mali2019-05-291-2/+9
| |/ / | | | | | | | | | Signed-off-by: Vijay Mali <vijay.mali@msystechnologies.com>
* | | Bump version to 14.13.3 by Chef Expeditorv14.13.3Chef Expeditor2019-05-295-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Merge pull request #8608 from chef/backport_7Tim Smith2019-05-293-3/+4
|\ \ \ | | | | | | | | Update a few more knife.rb references to include config.rb
| * | | Update a few more knife.rb references to include config.rbTim Smith2019-05-293-3/+4
| |/ / | | | | | | | | | | | | | | | Most of the knife.rb mentions have been updated and the docs have been updated already. Mention both since every existing user is only familiar with knfie.rb. Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Merge pull request #8605 from chef/backport_4Tim Smith2019-05-295-31/+14
|\ \ \ | | | | | | | | Remove old maintainer gems from the Gemfile
| * | | Update gemfile.lock to remove the maint depsTim Smith2019-05-291-9/+0
| | | | | | | | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * | | Remove old maintainer gems from the GemfileTim Smith2019-05-294-22/+14
| |/ / | | | | | | | | | | | | | | | These were used by our maintainer rake tasks. These are all gone now so there's no need for these gems. Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Bump version to 14.13.2 by Chef Expeditorv14.13.2Chef Expeditor2019-05-295-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Bump version to 14.13.1 by Chef Expeditorv14.13.1Chef Expeditor2019-05-295-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Merge pull request #8607 from chef/backport_6Tim Smith2019-05-293-3/+3
|\ \ \ | | | | | | | | Point people to Learn Chef in the post install message
| * | | Point people to Learn Chef in the post install messageTim Smith2019-05-293-3/+3
| |/ / | | | | | | | | | | | | | | | Point brand new users in the right direction. Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Bump version to 14.13.0 by Chef Expeditorv14.13.0Chef Expeditor2019-05-295-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Merge pull request #8603 from chef/backport_2Tim Smith2019-05-293-9/+64
|\ \ \ | | | | | | | | Improving error handling for template render