summaryrefslogtreecommitdiff
path: root/Gemfile
Commit message (Collapse)AuthorAgeFilesLines
* Feed chefstylesp/ffi-powershellStuart Preston2018-06-271-2/+2
| | | | Signed-off-by: Stuart Preston <stuart@chef.io>
* Only copy dlls to target location once on bundle installStuart Preston2018-06-271-1/+2
| | | | Signed-off-by: Stuart Preston <stuart@chef.io>
* Move bindir copy logic into Gemfile to be used by BundlerStuart Preston2018-06-231-0/+14
| | | | Signed-off-by: Stuart Preston <stuart@chef.io>
* Use inspec-core, new ffi gem, and bump depslcg/inspec-core-ffi-and-bumpLamont Granquist2018-06-041-6/+1
| | | | | | | | | Switches to inspec-core, bumps ffi gem to newest release and bumps other deps. closes #7236 Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Force unf_ext to 0.0.7.6 in Gemfile.Jared Quick2018-03-261-0/+5
| | | | Signed-off-by: Jared Quick <jquick@chef.io>
* Ship InSpec 2Thom May2018-03-241-1/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* remove bundle audittm/remove_bundle_auditThom May2018-03-201-2/+0
| | | | Signed-off-by: Thom May <thom@chef.io>
* Add the ability to inject log objectstm/inject_logThom May2018-03-191-4/+1
| | | | | | meaning that we can have inheritable metadata Signed-off-by: Thom May <thom@chef.io>
* use appbundler 0.11.1 for omnibus buildsLamont Granquist2018-03-011-1/+1
| | | | | | already working for kitchen-appbundle-updater in travis Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Remove git ref on bundler-auditLamont Granquist2018-02-281-1/+1
| | | | | | | Seems pointless when we pin the version in Gemfile.lock and I'm not even sure we need this now with GH's alerts. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Revert appbundler to 0.10.0Lamont Granquist2018-02-281-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* chefstyle/omnibus-software/omnibus back to masterLamont Granquist2018-02-281-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* lock inspec to 1.xtm/bump_depsThom May2018-02-281-1/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* bump omnibus depsThom May2018-02-281-1/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* Actually bump the version to 14 and dep on chef-config / ohai 14tm/branch_14Tim Smith2018-01-191-1/+2
| | | | | | Without this the kitchen tests fail as there isn't a chef-config build at ~14.0. Ohai has been bumped to 14 and the chef-config dep updated to 14. For now we have to use builds from master since we don't have a gem. I left notes that we can remove those in the future. Signed-off-by: Tim Smith <tsmith@chef.io>
* Ship chef-vault in the omnibus packagetm/chef_vaultThom May2017-08-311-0/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* Update Expeditor config to use new Merge and Artifact Actionstduffield/use-new-artifact-actionsTom Duffield2017-07-241-6/+1
| | | | | | | | | | Chef Expeditor now supports built in merge and artifact actions which allow us to reduce the burden of duplicating common processes across all our repositories. This change introduces several of these built_in functions, replacing functionality that was previously kept in our Rakefile. Signed-off-by: Tom Duffield <tom@chef.io>
* fix retries on JSON POST requests when negotiating protocol versionLamont Granquist2017-07-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | on the first pass through the JSON middleware it encodes the body. if there's a retry, it re-encodes the body as a string with all its metacharacters escaped. this is a particular issue when doing a first request that is a POST that requires negotiating the API version. when doing a GET it isn't a problem because there's no body payload -- but a POST or a PUT which requires a retry will get garbled and will cause a 500. this happens on hosted right now if trying to POST with a v2 API since hosted is only v1, so there's a retry to downgrade. i also made the same kind of changes to the streaming download requests, but since they're GETs its unclear to me if there was any impact there -- but middleware could have been double-mangling headers on a retry. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* move nokogiri config to omnibusLamont Granquist2017-07-101-1/+0
| | | | | | | | | this hand-builds it with the software dep, and its not a direct dep of chef itself and shouldn't be in the Gemfile.lock anyway, plus we need to pin via omnibus_overrides.rb and double-pinning in the Gemfile.lock is just added fussiness Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Should be happier now.Noah Kantrowitz2017-07-051-2/+1
| | | | Signed-off-by: Noah Kantrowitz <noah@coderanger.net>
* update commentLamont Granquist2017-05-241-1/+1
|
* use eval_gemfileLamont Granquist2017-05-241-1/+1
|
* simplify omnibus config and greenify builds againLamont Granquist2017-05-091-3/+2
| | | | | | | | | | | | | | this is also necessary for bundler-1.14.x i'm still not entirely clear why we ever needed all the fussy software gem configs or what the build-chef / build-chef-gem infrastructure ever did for us. it seems to have been mostly micro-optimization around building the software gems before bundle installing the project in order to take advantage of git caching. i aggressively don't care about that, this is quite fast enough. we can install nokogiri and libgecode early and that should take care of 98% of the build optimization issue. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* actually i don't think appveyor needs thislcg/remove-bundler-againLamont Granquist2017-04-271-3/+0
| | | | | | | pretty sure i solved this some other way and this was debugging i forgot to remove... Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* major testing overhaullcg/simplify-external-testsLamont Granquist2017-04-251-22/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See the PR comments for more philosophical background. This simplifies the external tests. The major feature here is that halite, poise, chefspec, etc are removed from the Gemfile.lock and the transitive Gemfile splicing is gone from the external tests. We're back to simply tracking master on external projects and bundle installing without locks and going red if the break. Those external projects should all similarly track master of chef/chef to reduce the possibility that they break us here. This also bumps bundler to 1.14.x and unblocks us there. It continues to simplify our use of bundler to be more mainstream and less impenetrable. There was some crazy shit that I found where I had to remove env vars like BUNDLE_ENABLE_TRAMPOLINE and the BUNDLE_IGNORE_CONFIG and BUNDLE_FROZEN env vars in appveyor along with the .bundle/config frozen setting were necessary to unbreak appveyor. We seem to have gotten very far afield of standard bundler usage and it was breaking in strange to debug ways. Oddly enough this exposed weird errors in the chef-config/spec/units/fips_spec.rb tests where we need to require the "win32/registry" file there now even though I can't figure out why that broke or how it was working previously. Also, adding x64-mingw32 to x86-mingw32 was necessary to test in appveyor on 64-bit windows (I tried universal-mingw32 and that failed) which seems obvious and is another case that I don't understand how it was working in bundler 1.12.x Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Use Ohai 13.0.0 releasetm/release_notesThom May2017-04-061-2/+1
| | | | Signed-off-by: Thom May <thom@chef.io>
* Add InSpec to chef omnibus buildsadamleff/add-inspecAdam Leff2017-04-051-0/+1
| | | | | | | | | | | | | This change adds InSpec to the Chef Gemfile, making it easier for our community to use InSpec for testing without requiring them to `chef_gem` install it prior to use. This also helps our users who wish to use InSpec but are in an air-gapped environment. Including our preferred testing library in our Omnibus builds will make it much easier for those users to use InSpec. Signed-off-by: Adam Leff <adam@leff.co>
* RFC 67: Remove cookbook segmentsThom May2017-04-041-1/+1
| | | | | | | | | This implements RFC 67, which removes cookbook segments, and moves to a single list of all the files contained in a cookbook. This allows us to move forward with better audit modes and also proper shipping of ohai plugins. Signed-off-by: Thom May <thom@chef.io>
* disable shipping nokogiri on windows for nowLamont Granquist2017-03-291-2/+2
| | | | | | | | | | | | 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>
* Bump nokogiri for CVE-2016-4658Maxime Brugidou2017-03-241-1/+2
| | | | | | | | | https://github.com/sparklemotion/nokogiri/issues/1615 This is required to pass the bundle-audit check in Travis CI Change-Id: Ia34db5b0595b88560fdff36a451df7567907e727 Signed-off-by: Maxime Brugidou <m.brugidou@criteo.com>
* Remove provisioning from the downstream teststm/no_provisioning_testsThom May2017-03-071-1/+0
| | | | Signed-off-by: Thom May <thom@chef.io>
* Merge pull request #5834 from chef/tduffield/update-version-bumpingTom Duffield2017-03-071-2/+2
|\ | | | | Improve version bumping
| * Better handle version bumpingtduffield/update-version-bumpingTom Duffield2017-02-221-2/+2
| | | | | | | | Signed-off-by: Tom Duffield <tom@chef.io>
* | Bump chef version to 13.0.0Lamont Granquist2017-02-281-3/+6
|/ | | | | | | | | | | This requires pulling in master of several gems, bumps all the other gems, plus pulls in new kitchen-appbundle-updater which supports pulling master of ohai. Note that kitchen-windows is disabled because it turns out it was broken and red on 12.19 all along. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Add back a few gems that are required (and document why)Tom Duffield2017-02-091-1/+1
| | | | Signed-off-by: Tom Duffield <tom@chef.io>
* Cleanup Gemfiles, Berksfiles, and update Gemfile groupsTom Duffield2017-02-091-2/+3
| | | | Signed-off-by: Tom Duffield <tom@chef.io>
* Remove a lot of old restraintsTom Duffield2017-02-091-1/+1
| | | | Signed-off-by: Tom Duffield <tom@chef.io>
* remove chef-provisioning-awslcg/remove-chef-provisioningLamont Granquist2016-12-201-1/+0
| | | | | | blocks testing on ruby 2.4 Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Use tduffield branch of github-changelog-generatorTom Duffield2016-12-021-1/+2
| | | | | | | | | | | | This branch fixes a number of bugs in the changelog generator, and supports the type of behavior that we want when generating our changelog. There is a PR open against upstream (skywinder/github-changelog-generator#453) to merge this upstream. As part of this, we can now generate the changelog on every commit. Signed-off-by: Tom Duffield <tom@chef.io>
* we haven't even been testing against chef-rewind for some timeLamont Granquist2016-10-071-1/+0
| | | | | | | | and its now officially deprecated in its README: https://github.com/thommay/chef-rewind Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* update dependencies (#5384)Matt Wrock2016-09-261-1/+1
|
* Bring in cucumber to prevent cucumber-core from being wrongly loadedJohn Keiser2016-09-081-1/+2
|
* Pin oc-chef-pedant to prevent unintended test slippageJohn Keiser2016-09-081-0/+3
|
* yet another dependency update PRupdate-depsMatt Wrock2016-09-071-0/+2
|
* Chefspec 5.0 is out. Remove fetching from git masterTim Smith2016-08-251-1/+1
| | | | Signed-off-by: Tim Smith <tsmith@chef.io>
* remove ruby 2.1 supportLamont Granquist2016-08-221-1/+0
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* switch to https urlLamont Granquist2016-08-191-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* track master of chefspec for fixesLamont Granquist2016-08-191-1/+1
| | | | Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
* Put travis and github gems back on released versionsjk/update-github-apiJohn Keiser2016-08-101-4/+1
|
* Update all dependenciesJohn Keiser2016-08-031-0/+4
|