summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Speed up the AIX hostname specfaster_specTim Smith2020-09-166-15/+1
| | | | | | | | | | | | | Mock out #resolve_fqdn like we do in all the other plugins to avoid actually checking the fqdn on the host running the specs. This was our #2 slowest spec: ``` Ohai::System AIX hostname plugin sets the machinename 0.85031 seconds ./spec/unit/plugins/aix/hostname_spec.rb:30 ``` Signed-off-by: Tim Smith <tsmith@chef.io>
* Bump version to 16.5.2 by Chef Expeditorv16.5.2Chef Expeditor2020-09-103-5/+6
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 16.5.1 by Chef Expeditorv16.5.1Chef Expeditor2020-09-103-4/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #1509 from chef/order_gemsTim Smith2020-09-102-10/+11
|\ | | | | Order the gems in the gemspec and gemfile
| * Order the gems in the gemspec and gemfileorder_gemsTim Smith2020-09-102-10/+11
| | | | | | | | | | | | Makes it a tiny bit easier on the eyes to find stuff Signed-off-by: Tim Smith <tsmith@chef.io>
* | Merge pull request #1510 from chef/dirTim Smith2020-09-106-11/+9
|\ \ | | | | | | Prefer __dir__ to __FILE__ used to get the dir
| * | Prefer __dir__ to __FILE__ used to get the dirdirTim Smith2020-09-106-11/+9
| | | | | | | | | | | | | | | | | | This avoids some File.dirname calls Signed-off-by: Tim Smith <tsmith@chef.io>
* | | Merge pull request #1511 from chef/fix_specsTim Smith2020-09-101-1/+1
|\ \ \ | |/ / |/| | Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Fix spec stub for the latest mixlib-shelloutfix_specsTim Smith2020-09-101-1/+1
|/ / | | | | | | | | | | | | No impact to users here, but the new mixlib-shellout changed the log level of streaming from debug to trace so we need to update this stub. Signed-off-by: Tim Smith <tsmith@chef.io>
* | Update CHANGELOG.md to reflect the promotion of 16.5.0Chef Expeditor2020-09-091-15/+12
|/ | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 16.5.0 by Chef Expeditorv16.5.0Chef Expeditor2020-09-093-5/+6
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #1505 from mattray/macos_packagesTim Smith2020-09-083-0/+8744
|\ | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * Add MacOS packages supportMatt Ray2020-09-043-0/+8744
| | | | | | | | | | | | Tested with MacOS 10.14.6 and 10.15.6 Signed-off-by: Matt Ray <github@mattray.dev>
* | Bump version to 16.4.16 by Chef Expeditorv16.4.16Chef Expeditor2020-09-093-5/+6
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #1508 from chef/rubocop_RedundantParenthesesTim Smith2020-09-0812-15/+15
|\ \ | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Fix another redundant regexrubocop_RedundantParenthesesTim Smith2020-09-081-1/+1
| | | | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Resolve RuboCop Style/RedundantParentheses warningsTim Smith2020-09-0812-15/+15
|/ / | | | | | | | | | | Simplify the code so it's easier to read Signed-off-by: Tim Smith <tsmith@chef.io>
* | Bump version to 16.4.15 by Chef Expeditorv16.4.15Chef Expeditor2020-09-083-5/+6
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #1506 from chef/dependabot/bundler/rubocop-performance-1.8.0Tim Smith2020-09-084-14/+6
|\ \ | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Remove unused spec helpersTim Smith2020-09-082-13/+1
| | | | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Updates for the new perf copsTim Smith2020-09-083-4/+8
| | | | | | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * | Update rubocop-performance requirement from 1.7.1 to 1.8.0dependabot-preview[bot]2020-09-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Updates the requirements on [rubocop-performance](https://github.com/rubocop-hq/rubocop-performance) to permit the latest version. - [Release notes](https://github.com/rubocop-hq/rubocop-performance/releases) - [Changelog](https://github.com/rubocop-hq/rubocop-performance/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop-hq/rubocop-performance/compare/v1.7.1...v1.8.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | | Bump version to 16.4.14 by Chef Expeditorv16.4.14Chef Expeditor2020-09-083-5/+6
|/ / | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #1507 from chef/chefstyleTim Smith2020-09-083-14/+12
|\ \ | |/ |/| Resolve new chefstyle warnings & use safe navigators
| * Bail out early to avoid safe operatorchefstyleTim Smith2020-09-081-3/+5
| | | | | | | | | | | | | | | | | | Also add some notes here that we should convert this to a filter_map when we can as that's easier to read and faster. Perf benchmarks from the tubes: Signed-off-by: Tim Smith <tsmith@chef.io>
| * Simplify respond_to?Tim Smith2020-09-081-1/+1
| | | | | | | | | | | | There's no need for the &. here Signed-off-by: Tim Smith <tsmith@chef.io>
| * Simplify things with &.Tim Smith2020-09-083-13/+9
| | | | | | | | | | | | We can avoid some duplicate checks by using &. in places Signed-off-by: Tim Smith <tsmith@chef.io>
| * Resolve new chefstyle warningsTim Smith2020-08-252-2/+2
| | | | | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* | Merge pull request #1504 from chef/lcg/remove-copyright-datesLamont Granquist2020-08-27165-165/+165
|\ \ | | | | | | Remove Copyright Dates
| * | Remove Copyright DatesLamont Granquist2020-08-27165-165/+165
|/ / | | | | | | | | | | end the insanity Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* | Bump version to 16.4.13 by Chef Expeditorv16.4.13Chef Expeditor2020-08-263-4/+12
| | | | | | | | Obvious fix; these changes are the result of automation not creative thinking.
* | Merge pull request #1501 from chef/lcg/chef-utils-helpersTim Smith2020-08-2512-122/+195
|\ \ | |/ |/| Migrate to the chef-utils helpers for which/shell_out
| * Try to fix windows unitslcg/chef-utils-helpersLamont Granquist2020-08-251-5/+6
| | | | | | | | | | | | | | | | This throws warnings, but I'm a bit out of ideas today. This lies like crazy to make it work on windows. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix case sensitive windows pathLamont Granquist2020-08-251-1/+3
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * trying to fix windows testsLamont Granquist2020-08-251-16/+19
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * chefstyleLamont Granquist2020-08-253-3/+3
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix the deafult localeLamont Granquist2020-08-251-3/+4
| | | | | | | | | | | | we need to call out to the ChefConfig helper to set this Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * fix specsLamont Granquist2020-08-251-1/+3
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * code reviewLamont Granquist2020-08-244-4/+4
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * single quotes againLamont Granquist2020-08-211-1/+1
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * Fix the PATH for the way it gets de-duplicatedLamont Granquist2020-08-211-1/+1
| | | | | | | | | | | | The default paths algorithm is a little bit weird Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * remove hardcoded path from my machineLamont Granquist2020-08-211-1/+1
| | | | | | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
| * Migrate to the chef-utils helpersLamont Granquist2020-08-219-112/+176
|/ | | | | | This replaces the which/shell_out helpers with ones from chef-utils. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Update CHANGELOG.md to reflect the promotion of 16.4.12Chef Expeditor2020-08-191-12/+9
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Update CHANGELOG.mdTim Smith2020-08-191-4/+2
| | | Signed-off-by: Tim Smith <tsmith@chef.io>
* Update CHANGELOG.md to reflect the promotion of 16.4.11Chef Expeditor2020-08-191-1/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 16.4.12 by Chef Expeditorv16.4.12Chef Expeditor2020-08-193-4/+12
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Merge pull request #1500 from chef/networkTim Smith2020-08-191-1/+1
|\ | | | | Signed-off-by: Tim Smith <tsmith@chef.io>
| * Add missing require for windows network pluginnetworkTim Smith2020-08-191-1/+1
|/ | | | | | | | This was missed since the windows network plugin just mocks out the IP data. I'll see what I can do to make these more real world tests in a followup PR Signed-off-by: Tim Smith <tsmith@chef.io>
* Update CHANGELOG.md to reflect the promotion of 16.4.11Chef Expeditor2020-08-141-22/+19
| | | | Obvious fix; these changes are the result of automation not creative thinking.