summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add expeditortduffield/add-expeditor-configTom Duffield2017-04-072-0/+64
| | | | | | | | Expeditor is the next-generation utility that we'll use for version bumping. It will include additional features that we don't currently have like the ability to not bump a version on a specific PR. Signed-off-by: Tom Duffield <tom@chef.io>
* Bump version of chef to 13.0.79 by Chef Versioner.v13.0.79Chef Versioner2017-03-305-10/+12
|
* Merge pull request #5938 from chef/lcg/dsl-argsLamont Granquist2017-03-3013-29/+130
|\ | | | | Chef-13: Support nameless resources and remove deprecated multi-arg resources
| * add relnotes for nameless resources [ci skip]Lamont Granquist2017-03-301-0/+15
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix specs for nameless resourcesLamont Granquist2017-03-302-3/+3
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * make nameless properties opt-inLamont Granquist2017-03-308-21/+33
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * remove specLamont Granquist2017-03-301-5/+0
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * Chef-13: Support nameless resources and remove deprecated multi-arg resourcesLamont Granquist2017-03-308-28/+107
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes nameless resources work in the DSL: ```ruby apt_update ``` It does it by giving it an empty-string name of "" It also drops support for multi-arg resources, that has been deprecated for some time: ```ruby some_resource "foo", "bar", "baz" ``` Note that multipackage package resources do not use multiple args, but a single argument which is an arry: ```ruby package [ "lsof", "strace", "tcpdump" ] ``` So this change does not affect that usage. Multi-arg has been deprecated for some time now and its not clear that it was ever used by anyone. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version of chef to 13.0.78 by Chef Versioner.v13.0.78Chef Versioner2017-03-305-16/+10
|
* Merge pull request #5968 from chef/lcg/bump-acceptance-gemsLamont Granquist2017-03-301-10/+11
|\ | | | | bumping acceptance gems
| * bumping acceptance gemsLamont Granquist2017-03-301-10/+11
|/ | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version of chef to 13.0.77 by Chef Versioner.v13.0.77Chef Versioner2017-03-305-16/+15
|
* Merge pull request #5966 from Happycoil/fix_powershell_script_guardLamont Granquist2017-03-301-1/+1
|\ | | | | set default guard_interpreter to powershell_script
| * set default guard_interpreter to powershell_scriptTor Magnus Rakvåg2017-03-301-1/+1
|/ | | | Signed-off-by: Tor Magnus Rakvåg <tm@intility.no>
* Bump version of chef to 13.0.76 by Chef Versioner.v13.0.76Chef Versioner2017-03-305-10/+17
|
* Merge pull request #5920 from chef/lcg/remove-descendants-tracker-1Lamont Granquist2017-03-294-127/+7
|\ | | | | Chef-13: remove more deprecated provider_resolver code
| * bump deps, mostly for poiseLamont Granquist2017-03-291-6/+6
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * Chef-13: remove more deprecated provider_resolver codeLamont Granquist2017-03-293-121/+1
| | | | | | | | | | | | | | I think this nukes descendants tracker, although might need to clean it up in a few more spots. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 13.0.75 by Chef Versioner.v13.0.75Chef Versioner2017-03-305-10/+10
| |
* | Merge pull request #5964 from chef/lcg/solaris-ruby24-fixLamont Granquist2017-03-291-3/+3
|\ \ | | | | | | fix ruby-2.4 func link tests on solaris 11
| * | fix commentLamont Granquist2017-03-291-2/+2
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | ruby-2.4 on solaris 11 behaves the same way hereLamont Granquist2017-03-291-3/+3
|/ / | | | | | | | | | | | | i suspect linux is the buggy one and everyone else is posix compliant... Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 13.0.74 by Chef Versioner.v13.0.74Chef Versioner2017-03-295-11/+10
| |
* | Merge pull request #5963 from chef/lcg/bump-omnibusLamont Granquist2017-03-291-1/+1
|\ \ | | | | | | pull omnibus-software fix for windows builds
| * | pull omnibus-software fix for windows buildsLamont Granquist2017-03-291-1/+1
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Bump version of chef to 13.0.73 by Chef Versioner.v13.0.73Chef Versioner2017-03-295-11/+10
| | |
* | | Merge pull request #5962 from chef/lcg/bump-omnibusLamont Granquist2017-03-291-3/+3
|\ \ \ | |/ / | | / | |/ |/| bumping omnibus lockfile
| * bumping omnibus lockfileLamont Granquist2017-03-291-3/+3
|/ | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Bump version of chef to 13.0.72 by Chef Versioner.v13.0.72Chef Versioner2017-03-295-10/+10
|
* Merge pull request #5952 from chef/lcg/make-action-class-a-classLamont Granquist2017-03-293-22/+35
|\ | | | | Chef-13: Make ActionClass a class
| * Make ActionClass a classLamont Granquist2017-03-293-22/+35
| | | | | | | | | | | | | | | | | | | | | | | | since any ActionClass literally is-a Chef::Provider it should just use inheritance and then we don't have to use the hacky hooks for class methods in modules and it becomes more clear from the ActionClass source what it is and what it does. Bonus starts the deprecation of properties being injected into the provider namespace. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Merge pull request #5958 from chef/lcg/ruby-24-windows-nokogiriLamont Granquist2017-03-293-16/+15
|\ \ | | | | | | disable nokogiri on windows for now
| * | disable shipping nokogiri on windows for nowLamont Granquist2017-03-293-16/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nokogiri does not have a ruby-2.4 release for windows this is slightly complicated because we still need nokogiri in the Gemfile.lock for travis. i'm starting to think we should have a Gemfile.travis and Gemfile.travis.lock or something and stop using groups for that. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Merge pull request #5960 from chef/tm/retryable_apiThom May2017-03-299-11/+132
|\ \ \ | |_|/ |/| | Retry API requests if using an unsupported version
| * | Retry API requests if using an unsupported versiontm/retryable_apiThom May2017-03-298-6/+102
| | | | | | | | | | | | Signed-off-by: Thom May <thom@chef.io>
| * | Allow the best API version to be queriedThom May2017-03-285-5/+30
| | | | | | | | | | | | | | | | | | Also tidy up in the face of the real world. Signed-off-by: Thom May <thom@chef.io>
* | | Bump version of chef to 13.0.71 by Chef Versioner.v13.0.71Chef Versioner2017-03-295-10/+10
| |/ |/|
* | Merge pull request #5957 from chef/lcg/solaris11-compiler-flagsLamont Granquist2017-03-282-6/+11
|\ \ | | | | | | bump _XOPEN_SOURCE to 600 for ruby 2.4 on Solaris
| * | bump _XOPEN_SOURCE to 600 for ruby 2.4 on SolarisLamont Granquist2017-03-282-6/+11
| | | | | | | | | | | | | | | | | | unbreaks builds. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | | Bump version of chef to 13.0.70 by Chef Versioner.v13.0.70Chef Versioner2017-03-285-10/+10
|/ /
* | Merge pull request #5954 from chef/lcg/bump-lockfileLamont Granquist2017-03-289-83/+91
|\ \ | | | | | | bumping everything
| * | bumping again mostly to get chef-zeroLamont Granquist2017-03-284-21/+21
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | comment out problematic testLamont Granquist2017-03-281-6/+6
| | | | | | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * | bumping everythingLamont Granquist2017-03-288-76/+84
|/ / | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 13.0.69 by Chef Versioner.v13.0.69Chef Versioner2017-03-285-17/+11
| |
* | Merge pull request #5936 from chef/tm/rubby_241Lamont Granquist2017-03-286-42/+44
|\ \ | |/ |/| Use the ruby 2.4.1 release
| * drop 2.2 support + testing / bump tests to 2.4.1Lamont Granquist2017-03-282-28/+23
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * bump ruby to 2.4.1Lamont Granquist2017-03-285-14/+21
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version of chef to 13.0.68 by Chef Versioner.v13.0.68Chef Versioner2017-03-285-17/+15
| |
* | Merge pull request #5946 from chef/lcg/fix-action-classLamont Granquist2017-03-273-64/+88
|\ \ | |/ |/| Fix action class weirdness in Chef-13