Chef Expeditor
55075c294c
Bump version to 4.28.4 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-19 14:21:28 +00:00
Clinton Wolfe
3038ffa807
Merge pull request #5435 from collinmcneese/profile_init
2021-03-19 10:19:26 -04:00
Chef Expeditor
47ac2566c4
Bump version to 4.28.3 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-19 14:17:52 +00:00
Clinton Wolfe
5378a5128b
Merge pull request #5434 from inspec/vasundhara/fix-for-controls-option
2021-03-19 10:16:02 -04:00
Chef Expeditor
9ab75923cf
Bump version to 4.28.2 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-19 14:11:14 +00:00
Vasu1105
428a8a7194
Added code comments and rename control_list_exist? method to controls_list_exist?
...
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2021-03-19 16:10:12 +05:30
Vasu1105
2dcd174ff1
minor code fix
...
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2021-03-19 16:10:12 +05:30
Vasu1105
a5932b7da7
Fixes 5215: While using --controls options the control block was also getting evaluated as filtering of the control was happening after evaluating so added the filter logic in the control_eval_context. Also when we have describe block outside control block we are we
...
generating a control for them automatically and then execute due that also becomes a control and has to add same logic to filter the control in that mehtod
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2021-03-19 16:10:12 +05:30
Vasu1105
b984bbe960
Fixes #5215 : When we are using --controls option it was also evaluating the control block of not included controls in the controls option as it was filtering the controls from the list after evaluating updated the logic so that it gets evaluated after filtering. Removed filter_controls methods as no more using that
...
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2021-03-19 16:10:11 +05:30
Yoshi Yamaguchi
4981ca0a97
Add quotation around -name option to work properly with zsh
...
Singed-off-by: Yoshi Yamaguchi <yoshifumi@google.com>
2021-03-19 12:35:34 +09:00
Chef Expeditor
2f41c16ad4
Bump version to 4.28.1 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-17 17:21:06 +00:00
Collin McNeese
fa327ab55c
updates readme for profile inits to reference inputs instead of attributes
...
Signed-off-by: Collin McNeese <cmcneese@chef.io>
2021-03-17 11:28:20 -05:00
Collin McNeese
9da7a7338d
updates aws profile init to use inputs instead of attributes
...
Signed-off-by: Collin McNeese <cmcneese@chef.io>
2021-03-17 09:19:11 -05:00
Collin McNeese
2f4dc632a1
Updates GCP profile init to use inputs instead of attributes
...
Signed-off-by: Collin McNeese <cmcneese@chef.io>
2021-03-17 09:15:10 -05:00
Chef Expeditor
12a357a46b
Bump version to 4.28.0 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-16 20:13:21 +00:00
Nick Schwaderer
4c03ad4c55
Support 'clear_cache'
...
Helps with Customer Bug 236 (see there for repro)
Currently, when we run `inspec compliance upload my_profile` it is
cached locally in inspec when run. If we update the version in the core
code and run another upload, `inspec compliance upload my_profile` again
it will run the old cached version instead of running a new copy
from automate.
The current workaround is to specify the desired version with
`inspec exec compliance://my_profile/admin#0.1.1`.
The caching happens before we have forward sight into the profile's
contents and only the target name. So the text used to generate the
cache would be `compliance://my_profile/admin` which does not change
version to version.
A fix here could simply identify when we are doing a local `inspec exec
compliance://` (hitting local profiles does not generate a cache) and
skips the cache if there's no version specified. That would eliminate
the unexpected behavior. However, it is a breaking change for customers
as some current caching taking place would no longer take place.
Instead, we have included a `clear_cache` cli method for InSpec,
which should assist the core team and other developers in the future
when debugging edge case issues in InSpec.
Signed-off-by: Nick Schwaderer <nschwaderer@chef.io>
2021-03-16 15:41:55 -04:00
Chef Expeditor
4bb0af3dbe
Bump version to 4.27.3 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-16 16:18:50 +00:00
Chef Expeditor
cf48b46d00
Bump version to 4.27.2 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-15 15:51:03 +00:00
yarick
e88e92bb66
Merge branch 'master' of https://github.com/inspec/inspec into auditd_conf_readers
2021-03-14 18:58:44 -04:00
Chef Expeditor
00c57dfe83
Bump version to 4.27.1 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-10 17:15:15 +00:00
Chef Expeditor
a395a96cff
Bump version to 4.27.0 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-10 17:09:28 +00:00
Clinton Wolfe
27e4854663
Merge pull request #5425 from option-to-skip-empty-profile-report
...
Fixes #5373 : Add option to filter empty profiles from report
2021-03-10 12:07:19 -05:00
Chef Expeditor
29682b4091
Bump version to 4.26.17 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-10 17:06:30 +00:00
Chef Expeditor
151208b858
Bump version to 4.26.16 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-09 15:52:18 +00:00
Vasu1105
13d899d2af
Fix for nil error when using to compare nil to an expectation
...
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2021-03-05 21:46:52 +05:30
Vasu1105
216306a219
removed unwanted README files from test fixtures and fixed some minor copy paste test
...
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2021-03-05 16:29:30 +05:30
Vasu1105
7dba4fa641
Fixes #5373 : Add option to filter empty profiles from report
...
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2021-03-04 22:09:48 +05:30
Chef Expeditor
9eacee2688
Bump version to 4.26.15 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-03-01 20:55:52 +00:00
yarick
181a924ddd
In order to allow for dynamic tests, exposed these instance variables
...
Signed-off-by: yarick <yarick@yarick.net>
2021-02-28 17:47:17 -05:00
Chef Expeditor
77b29d7550
Bump version to 4.26.14 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-26 14:22:10 +00:00
Clinton Wolfe
0f1b1f5c5c
Don't pass -u on AIX
...
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2021-02-25 14:31:13 -05:00
Chef Expeditor
c212bb0902
Bump version to 4.26.13 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-23 17:07:34 +00:00
Clinton Wolfe
b425f1d6b9
Merge pull request #5414 from inspec/cw/ssh_conf_first_value
2021-02-23 12:05:44 -05:00
Chef Expeditor
e990011d78
Bump version to 4.26.12 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-22 23:15:22 +00:00
Chef Expeditor
69320a4a0c
Bump version to 4.26.11 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-22 19:30:13 +00:00
Chef Expeditor
dd5ac93127
Bump version to 4.26.10 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-21 21:07:16 +00:00
Clinton Wolfe
eae5dc9473
Use first ssh_config value encountered
...
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2021-02-21 15:12:46 -05:00
Clinton Wolfe
953524b659
Recurse into subprofile contexts when skipping controls
...
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2021-02-16 18:13:27 -05:00
Chef Expeditor
26fc75d4c5
Bump version to 4.26.9 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-16 21:40:14 +00:00
Chef Expeditor
5f07181a00
Bump version to 4.26.8 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-12 16:36:35 +00:00
Chef Expeditor
0cf2716037
Bump version to 4.26.7 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-12 16:26:50 +00:00
Chef Expeditor
441502da51
Bump version to 4.26.6 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-12 16:23:43 +00:00
Chef Expeditor
2eda3de283
Bump version to 4.26.5 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-02-01 17:09:10 +00:00
Chef Expeditor
a70f336800
Bump version to 4.26.4 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-01-27 16:24:05 +00:00
Clinton Wolfe
49589a5534
Improve programmatic plugin configuration
2021-01-27 11:22:40 -05:00
Chef Expeditor
f6844a7442
Bump version to 4.26.3 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-01-27 15:50:16 +00:00
Thomas Heinen
4ef2c7ad1e
Improve programmatic plugin configuration
...
Signed-off-by: Thomas Heinen <theinen@tecracer.de>
2021-01-27 13:31:12 +01:00
Chef Expeditor
12f8db43f5
Bump version to 4.26.2 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-01-26 21:13:05 +00:00
Clinton Wolfe
2c391198f2
Enable programmatic setting of plugin configuration
2021-01-26 16:11:35 -05:00
Chef Expeditor
868e195c60
Bump version to 4.26.1 by Chef Expeditor
...
Obvious fix; these changes are the result of automation not creative thinking.
2021-01-26 21:08:08 +00:00