summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Reduce the client specscheffishTim Smith2018-11-141-634/+0
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Merge pull request #7926 from chef/code_of_conductTim Smith2018-11-131-0/+1
|\ | | | | Add a link to our code of conduct page
| * Add a link to our code of conduct pageTim Smith2018-11-131-0/+1
| | | | | | | | | | | | This will be displayed on GitHub now Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 15.0.63 by Chef Expeditorv15.0.63Chef Expeditor2018-11-135-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #7924 from chef/inspec_bumpTim Smith2018-11-132-9/+9
|\ \ | |/ |/| Update inspec-core to 3.0.46
| * Update inspec-core to 3.0.46Tim Smith2018-11-132-9/+9
|/ | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 15.0.62 by Chef Expeditorv15.0.62Chef Expeditor2018-11-135-10/+10
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 15.0.61 by Chef Expeditorv15.0.61Chef Expeditor2018-11-125-11/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #7912 from chef/windows_featureTim Smith2018-11-122-5/+9
|\ | | | | windows_feature: Move provider logic into the default of the install_method property
| * windows_feature: Move provider logic into the default of the install_method ↵windows_featureTim Smith2018-11-092-5/+9
|/ | | | | | | | property This eliminates the need for setting the subresource variable and also allows us to auto-generate docs that are aware of the default. Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 15.0.60 by Chef Expeditorv15.0.60Chef Expeditor2018-11-105-11/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #7910 from chef/policy_files_alwaysTim Smith2018-11-093-19/+1
|\ | | | | Always run policy_file if a policy_file or policy_group exists
| * Always run policy_file if a policy_file or policy_group existspolicy_files_alwaysTim Smith2018-11-093-19/+1
| | | | | | | | | | | | Remove the config to turn it off Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 15.0.59 by Chef Expeditorv15.0.59Chef Expeditor2018-11-105-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #7897 from chef/cacertsTim Smith2018-11-092-15/+19
|\ \ | |/ |/| Update deps to bring in the new ca-certs
| * Update deps to bring in the new ca-certscacertsTim Smith2018-11-082-15/+19
| | | | | | | | | | | | This adds several new certs and removes 1. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 15.0.58 by Chef Expeditorv15.0.58Chef Expeditor2018-11-095-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #7892 from chef/lcg/chef-15-nillable-deep-mergeTim Smith2018-11-093-12/+62
|\ \ | | | | | | Add nillability to attribute deep merging
| * | add docs on possible breaking changeLamont Granquist2018-11-091-0/+18
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | fix commentsLamont Granquist2018-11-091-4/+4
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | Chef-15: add nillability to attribute deep mergingLamont Granquist2018-11-092-8/+40
|/ / | | | | | | | | | | | | | | | | | | Changes to consistently uses the "NIL" object internally to mean "not present" instead of abusing nil for that purpose. So now "nil means nil" and we can deep merge that so it will effectively override lower precedence levels if you write a nil. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version to 15.0.57 by Chef Expeditorv15.0.57Chef Expeditor2018-11-094-8/+8
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #7908 from chef/notesTim Smith2018-11-091-0/+491
|\ \ | | | | | | Add release notes for missing 14,13,12 versions
| * | Add release notes for missing 14,13,12 versionsTim Smith2018-11-091-0/+491
|/ / | | | | | | | | | | | | | | Since we branch the main release notes doc was missing a ton of stuff. We'll probably use this doc for the release notes when we switch the docs site to markdown so it needs to include the missing releases. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 15.0.56 by Chef Expeditorv15.0.56Chef Expeditor2018-11-095-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Bump version to 15.0.55 by Chef Expeditorv15.0.55Chef Expeditor2018-11-095-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #7895 from chef/sp/fix7715Stuart Preston2018-11-091-1/+1
|\ \ | | | | | | windows_ad_join: Switch to UPN format usernames for use with AD cmdlets
| * | Switch to UPN format (domain_user@domain_name) to build the credential ↵sp/fix7715Stuart Preston2018-11-081-1/+1
| |/ | | | | | | | | | | object for Active Directory cmdlets Signed-off-by: Stuart Preston <stuart@chef.io>
* | Merge pull request #7903 from chef/task_fixStuart Preston2018-11-091-231/+230
|\ \ | | | | | | Make sure we define windows_task resource on *nix systems
| * | Make sure we define windows_task resource on *nix systemstask_fixTim Smith2018-11-081-231/+230
|/ / | | | | | | | | | | | | | | Move the if windows statement from the entire resource to the actual place where we used Windows specific code. This makes it so we can use chefspec and the chef-resource-inspector for this resource. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 15.0.54 by Chef Expeditorv15.0.54Chef Expeditor2018-11-085-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #7896 from chef/lcg/fix-knife-integration-timeoutsLamont Granquist2018-11-083-13/+19
|\ \ | |/ |/| Fix the knife integration spec timeouts
| * fix the knife integration spec timeoutsLamont Granquist2018-11-083-13/+19
|/ | | | | | | | | rely on killing the thread to terminate the server, and rely on thread#join to correctly signal to the main thread that the server thread is dead, don't leak the server object out of the helper. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version to 15.0.53 by Chef Expeditorv15.0.53Chef Expeditor2018-11-075-11/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #7890 from chef/lcg/node-attribute-whitspace-fixesLamont Granquist2018-11-071-185/+189
|\ | | | | fix whitespace in node attributes [ci skip]
| * fix whitespace in node attributes [ci skip]Lamont Granquist2018-11-071-185/+189
|/ | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version to 15.0.52 by Chef Expeditorv15.0.52Chef Expeditor2018-11-075-11/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #7886 from chef/lcg/yum-version-with-package-sourceLamont Granquist2018-11-071-0/+18
|\ | | | | add tests for yum version with package_source bug
| * spelling is a thinglcg/yum-version-with-package-sourceLamont Granquist2018-11-071-2/+2
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * add tests for yum version with package_source bugLamont Granquist2018-11-071-0/+18
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version to 15.0.51 by Chef Expeditorv15.0.51Chef Expeditor2018-11-075-11/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #7866 from chef/provisioningTim Smith2018-11-073-82/+3
|\ \ | | | | | | Remove Chef provisioning lazy loading
| * | Remove Chef provisioning lazy loadingprovisioningTim Smith2018-11-023-82/+3
| | | | | | | | | | | | | | | | | | Remove the lazy loading of chef provisioning resources Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Bump version to 15.0.50 by Chef Expeditorv15.0.50Chef Expeditor2018-11-075-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | | Merge pull request #7884 from chef/descriptionsTim Smith2018-11-0723-37/+34
|\ \ \ | | | | | | | | Update more descriptions and tweak default handling in chef-resource-inspector
| * | | More tweaks to when we quote defaults in resource-inspectorTim Smith2018-11-072-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | We were quoting a lot of odd things like empty arrays or empty strings. The original intent was to quote symbols. Let's just stick to that. Signed-off-by: Tim Smith <tsmith@chef.io>
| * | | More resource description updatesTim Smith2018-11-0722-36/+33
| | |/ | |/| | | | | | | | | | | | | Better descriptions for many name properties and copy edits from the docs site. Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Merge pull request #7858 from chef/breaking_changesTim Smith2018-11-071-0/+69
|\ \ \ | |/ / |/| | Document our breaking changes in Chef 15
| * | Document our breaking changes in Chef 15breaking_changesTim Smith2018-11-041-0/+69
| | | | | | | | | | | | | | | | | | | | | | | | This is a *very* rough draft of the notes we'll ship in April. I wanted to get what we've done so far written down so we don't have to dig through 4 months of git history later on. Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Bump version to 15.0.49 by Chef Expeditorv15.0.49Chef Expeditor2018-11-075-11/+12
| | | | | | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.