summaryrefslogtreecommitdiff
path: root/knife
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 18.2.26 by Chef ExpeditorHEADv18.2.26mainChef Expeditor2023-05-162-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.25 by Chef Expeditorv18.2.25Chef Expeditor2023-05-102-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.24 by Chef Expeditorv18.2.24Chef Expeditor2023-05-092-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.23 by Chef Expeditorv18.2.23Chef Expeditor2023-05-042-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.22 by Chef Expeditorv18.2.22Chef Expeditor2023-05-042-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.21 by Chef Expeditorv18.2.21Chef Expeditor2023-05-042-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.20 by Chef Expeditorv18.2.20Chef Expeditor2023-05-032-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.19 by Chef Expeditorv18.2.19Chef Expeditor2023-05-032-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.18 by Chef Expeditorv18.2.18Chef Expeditor2023-05-022-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Fix output of cookbook list/show (#13654)Milan Šťastný2023-05-026-24/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR turns the output from the following: ```json $ knife cookbook list -a -F json [ "7-zip 1.0.2", "api_docs 0.1.0", "apt 1.1.1", "ark 4.0.0 3.1.1 0.9.0 0.3.0", "audit-cis 0.4.0", "authenticator 0.1.5 0.1.4", "aws-static-ip-ha 0.1.0", "aws-tools 0.0.5" ] ``` to this ```json $ knife cookbook list -a -F json { "7-zip": [ "1.0.2" ], "api_docs": [ "0.1.0" ], "apt": [ "1.1.1" ], "ark": [ "4.0.0", "3.1.1", "0.9.0", "0.3.0" ], "audit-cis": [ "0.4.0" ], "authenticator": [ "0.1.5", "0.1.4" ], "aws-static-ip-ha": [ "0.1.0" ], "aws-tools": [ "0.0.5" ] } ``` This has a potential of breaking peoples script if they adjusted to the broken format, that is why this is marked as a breaking change. This brings the output of the following in line with other listings coming out of chef ### Examples of the affected outputs: #### knife cookbook show summary(default) ``` $ knife cookbook show ark ark: 4.0.0 3.1.1 0.9.0 0.3.0 ``` text ``` $ knife cookbook show ark -F text ark: 4.0.0 3.1.1 0.9.0 0.3.0 ``` json ```json $ knife cookbook show ark -F json { "ark": [ "4.0.0", "3.1.1", "0.9.0", "0.3.0" ] } ``` yaml ```yaml $ knife cookbook show ark -F yaml --- ark: - 4.0.0 - 3.1.1 - 0.9.0 - 0.3.0 ``` pp ``` $ knife cookbook show ark -F pp {"ark"=>["4.0.0", "3.1.1", "0.9.0", "0.3.0"]} ``` #### knife cookbook list summary(default) ``` $ knife cookbook list -a 7-zip: 1.0.2 api_docs: 0.1.0 apt: 1.1.1 ark: 4.0.0 3.1.1 0.9.0 0.3.0 audit-cis: 0.4.0 auditbeat: 0.0.42 authenticator: 0.1.5 0.1.4 aws-static-ip-ha: 0.1.0 aws-tools: 0.0.5 ``` text ``` $ knife cookbook list -a -F text 7-zip: 1.0.2 api_docs: 0.1.0 apt: 1.1.1 ark: 4.0.0 3.1.1 0.9.0 0.3.0 audit-cis: 0.4.0 auditbeat: 0.0.42 authenticator: 0.1.5 0.1.4 aws-static-ip-ha: 0.1.0 aws-tools: 0.0.5 ``` json ```json $ knife cookbook list -a -F json { "7-zip": [ "1.0.2" ], "api_docs": [ "0.1.0" ], "apt": [ "1.1.1" ], "ark": [ "4.0.0", "3.1.1", "0.9.0", "0.3.0" ], "audit-cis": [ "0.4.0" ], "authenticator": [ "0.1.5", "0.1.4" ], "aws-static-ip-ha": [ "0.1.0" ], "aws-tools": [ "0.0.5" ], } ``` yaml ```yaml $ knife cookbook list -a -F yaml --- 7-zip: - 1.0.2 api_docs: - 0.1.0 apt: - 1.1.1 ark: - 4.0.0 - 3.1.1 - 0.9.0 - 0.3.0 audit-cis: - 0.4.0 authenticator: - 0.1.5 - 0.1.4 aws-static-ip-ha: - 0.1.0 aws-tools: - 0.0.5 ``` pp ``` $ knife cookbook list -a -F pp {"7-zip"=>["1.0.2"], "api_docs"=>["0.1.0"], "apt"=>["1.1.1"], "ark"=>["4.0.0", "3.1.1", "0.9.0", "0.3.0"], "audit-cis"=>["0.4.0"], "authenticator"=>["0.1.5", "0.1.4"], "aws-static-ip-ha"=>["0.1.0"], "aws-tools"=>["0.0.5"], } ``` Closes #13653 Signed-off-by: Milan Stastny <mistastn@cisco.com>
* Bump version to 18.2.17 by Chef Expeditorv18.2.17Chef Expeditor2023-04-252-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.16 by Chef Expeditorv18.2.16Chef Expeditor2023-04-252-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.15 by Chef Expeditorv18.2.15Chef Expeditor2023-04-202-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.14 by Chef Expeditorv18.2.14Chef Expeditor2023-04-202-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.13 by Chef Expeditorv18.2.13Chef Expeditor2023-04-192-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.12 by Chef Expeditorv18.2.12Chef Expeditor2023-04-182-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.11 by Chef Expeditorv18.2.11Chef Expeditor2023-04-142-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.10 by Chef Expeditorv18.2.10Chef Expeditor2023-04-132-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.9 by Chef Expeditorv18.2.9Chef Expeditor2023-04-062-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.8 by Chef Expeditorv18.2.8Chef Expeditor2023-04-052-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.7 by Chef Expeditorv18.2.7Chef Expeditor2023-04-042-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.6 by Chef Expeditorv18.2.6Chef Expeditor2023-04-032-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.5 by Chef Expeditorv18.2.5Chef Expeditor2023-03-302-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.4 by Chef Expeditorv18.2.4Chef Expeditor2023-03-302-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.3 by Chef Expeditorv18.2.3Chef Expeditor2023-03-302-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.2 by Chef Expeditorv18.2.2Chef Expeditor2023-03-282-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.1 by Chef Expeditorv18.2.1Chef Expeditor2023-03-272-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.2.0 by Chef Expeditorv18.2.0Chef Expeditor2023-03-232-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.36 by Chef Expeditorv18.1.36Chef Expeditor2023-03-222-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.35 by Chef Expeditorv18.1.35Chef Expeditor2023-03-212-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.34 by Chef Expeditorv18.1.34Chef Expeditor2023-03-212-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.33 by Chef Expeditorv18.1.33Chef Expeditor2023-03-102-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.32 by Chef Expeditorv18.1.32Chef Expeditor2023-03-092-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.31 by Chef Expeditorv18.1.31Chef Expeditor2023-03-072-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.30 by Chef Expeditorv18.1.30Chef Expeditor2023-03-072-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.29 by Chef Expeditorv18.1.29tp/v18_1_29_for_ffi_scienceChef Expeditor2023-03-022-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.28 by Chef Expeditorv18.1.28Chef Expeditor2023-03-012-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* proxifier2 gem in sync with repo fork (#13617)Nikhil Gupta2023-03-013-4/+2
| | | | | | | | | | | * New gem proxifier2 published from fork in chef/ruby-proxifier * Key change in proxifier2 gem enables Ruby 3.1 compatibility * Older way caused inconsistency for chef gem users. --------- Signed-off-by: nikhil2611 <nikhilgupta2102@gmail.com> Signed-off-by: Ashique P S <Ashique.saidalavi@progress.com> Co-authored-by: Ashique P S <Ashique.saidalavi@progress.com>
* Bump version to 18.1.27 by Chef Expeditorv18.1.27Chef Expeditor2023-02-282-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.26 by Chef Expeditorv18.1.26Chef Expeditor2023-02-272-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.25 by Chef Expeditorv18.1.25Chef Expeditor2023-02-232-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.24 by Chef Expeditorv18.1.24Chef Expeditor2023-02-232-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.23 by Chef Expeditorv18.1.23Chef Expeditor2023-02-222-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.22 by Chef Expeditorv18.1.22Chef Expeditor2023-02-212-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.21 by Chef Expeditorv18.1.21Chef Expeditor2023-02-202-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.20 by Chef Expeditorv18.1.20Chef Expeditor2023-02-142-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.19 by Chef Expeditorv18.1.19Chef Expeditor2023-02-142-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.18 by Chef Expeditorv18.1.18Chef Expeditor2023-02-142-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.17 by Chef Expeditorv18.1.17Chef Expeditor2023-02-142-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.
* Bump version to 18.1.16 by Chef Expeditorv18.1.16Chef Expeditor2023-02-142-3/+3
| | | | Obvious fix; these changes are the result of automation not creative thinking.