summaryrefslogtreecommitdiff
path: root/lib/chef_zero
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Bump revision to 4.3.1v4.3.1John Keiser2015-09-291-1/+1
| | | |
* | | | Translate admin="true" to admin=trueJohn Keiser2015-09-291-0/+1
| | | |
* | | | Release 4.3.0v4.3.0John Keiser2015-09-021-1/+1
| | | |
* | | | Merge pull request #140 from terceiro/remove-chef-depChris Doherty2015-08-241-5/+2
|\ \ \ \ | | | | | | | | | | Remove dependency on chef
| * | | | Remove implicit dependency on chefAntonio Terceiro2015-06-141-5/+2
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | You don't want chef-zero depending on chef, since chef already depends on chef-zero and circular dependencies are a pain to deal with. This closes issue #136
* | | | Adding back logic to delete the association request when adding a user to an ↵tball/add_user_to_orgtyler-ball2015-08-193-16/+37
| | | | | | | | | | | | | | | | org (as well as adding the user to the groups)
* | | | Use new json_response API for /server_api_versionAndrew Brown2015-08-143-6/+8
| | | | | | | | | | | | | | | | | | | | We should be using the new API for json_response, since this is a new endpoint.
* | | | Further support for /server_api_versionAndrew Brown2015-08-132-4/+36
| | | | | | | | | | | | | | | | | | | | This adds checks to ensure that the requested API version is checked early on in the request cycle, to comply with RFC041.
* | | | Initial support for /server_api_versionAndrew Brown2015-08-132-0/+15
| |_|/ |/| | | | | | | | | | | This adds initial support for /server_api_version and also adds constants for the min/max API versions.
* | | Preliminary support for _identifiers APIAndrew Brown2015-08-122-0/+24
| | | | | | | | | | | | Adding preliminary support for the _identifiers REST endpoint.
* | | Support POST /organizations/ORGNAME/usersAndrew Brown2015-07-103-15/+39
| | | | | | | | | | | | | | | | | | | | | This commit re-adds support for POST /organizations/ORGNAME/users. Since the code is very similar to /organizations/ORG/association_requests, we introduced a helper module to avoid code duplication.
* | | Force complete deletion of org on DELETE requestMarc Paradise2015-07-101-1/+1
| | |
* | | use the supplied org_type in org creationMarc Paradise2015-07-101-1/+1
| | |
* | | cleanup a TODO left behind and clean up some debug codeMarc Paradise2015-07-102-3/+0
| | |
* | | update chef-zero to be fully compatible with CS12Marc Paradise2015-07-108-39/+40
| | |
* | | Bump revision to 4.2.3v4.2.3John Keiser2015-06-191-1/+1
| | |
* | | Fix variable error causing when_the_chef_server issuesJohn Keiser2015-06-191-2/+2
| | |
* | | Make server_scope: :context work againjk/server_scope_fixJohn Keiser2015-06-191-19/+21
|/ /
* | Update version and changelog for 4.2.2v4.2.2release-4.2.2danielsdeleo2015-05-181-1/+1
| |
* | Access server opts in example context not describe contextdanielsdeleo2015-05-181-5/+7
| |
* | Adding 'server_on_port' method to socketless server maptball/socketlesstyler-ball2015-05-061-0/+8
| |
* | Prep for releasing 4.2.1v4.2.1tyler-ball2015-04-071-1/+1
| |
* | Don't pollute global Chef server optionsjk/chef_server_optionsJohn Keiser2015-04-061-4/+5
| |
* | Updating changelog and version for 4.2.0 releasetyler-ball2015-04-061-1/+1
| |
* | Merge pull request #119 from chef/jk/org_and_scopeTyler Ball2015-04-061-222/+225
|\ \ | | | | | | Add :organization and :data_scope options to with_chef_server
| * | Add :organization and :data_scope options to with_chef_serverjk/org_and_scopeJohn Keiser2015-03-191-222/+225
| | | | | | | | | | | | | | | - :organization => 'org' lets you specify that an org should be created and pointed at - :data_scope => :context lets you specify that the server and any data should be kept around for the entire example group
* | | Bump to 4.1.0 to release socketless modev4.1.0danielsdeleo2015-04-011-1/+1
| | |
* | | Extract socketless server map and add specssocketlessdanielsdeleo2015-03-302-47/+85
| | |
* | | Initial implementation of socketless requestsdanielsdeleo2015-03-272-3/+71
| | |
* | | Partially Revert 1b2a6e5f107254cce8200a4750035b30265ae0c8partial-revert-1b2a6e5f107254cce8200a4750035b30265ae0c8danielsdeleo2015-03-271-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, mounting the /users endpoint at the top level when in osc_compat mode causes errrors in the Chef integration tests. This may be due to a misconfiguration in the way Chef implements local mode but I am unable to pinpoint the exact causes right now. In any case, this is the minimal "revert" of 1b2a6e5f107254cce8200a4750035b30265ae0c8 that gets Chef's integration tests working again.
* | | Support /version; fix some global URIsPhil Dibowitz2015-03-263-6/+36
|/ /
* | Update validation messages to match erchefdanielsdeleo2015-02-251-19/+34
| |
* | Validate that revision_id is not emptydanielsdeleo2015-02-231-0/+2
| |
* | Policyfile revision_id field is mandatory, validate formatdanielsdeleo2015-02-231-1/+12
| |
* | Bump revision to 4.0v4.0John Keiser2015-02-111-1/+1
| |
* | Check before create/update to determine correct status codedanielsdeleo2015-01-281-10/+9
| | | | | | | | | | | | The memore store and ChefFS store have different behaviors when writing to an existing object, so work around that by checking for the existence of the item before creating/updating.
* | Set backtraces on "nested" exceptionsdanielsdeleo2015-01-271-2/+6
| | | | | | | | | | Future ruby has automagic nested exceptions but with current ruby raising a new exception during rescue obscures the backtrace
* | Add policies endpointdanielsdeleo2015-01-202-1/+129
| |
* | Show invalid data in error messagedanielsdeleo2015-01-201-1/+1
|/
* Version bump for 3.2.1.Serdar Sutay2014-11-261-1/+1
|
* fix: should set https to rack.url_scheme #87sawanoboly2014-11-251-0/+1
|
* add CORS headernls/CORSNathan L Smith2014-10-181-0/+3
|
* Bump revision to 3.2v3.2John Keiser2014-09-261-1/+1
|
* Removing 'json' gem dependency, replacing with 'ffi-yajl'tball/chef-zero-yajl-replace-jsontyler-ball2014-09-2653-148/+148
|
* Bump revision to 3.1.3v3.1.3John Keiser2014-09-031-1/+1
|
* Handle exceptional conditions where stops are being called all overJohn Keiser2014-09-031-2/+2
|
* Pass base URI to V1 data store only in true single org modebase_uriJohn Keiser2014-09-032-7/+4
|
* Make v2_to_v1 get() munge the base URI so cookbooksJohn Keiser2014-09-033-3/+19
| | | | generate the correct URLs
* Bump revision to 3.1.2v3.1.2John Keiser2014-08-291-1/+1
|
* Add default for cookbook()John Keiser2014-08-291-3/+12
|