inspec 0.9.4 → 0.9.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -4
- data/bin/inspec +2 -2
- data/docs/ctl_inspec.rst +2 -2
- data/lib/inspec/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fc1943a4f7b887acce7a49336b5d32aef1e4847
|
4
|
+
data.tar.gz: 88da833cba32da598a683bd1fff826caf2809af2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2d297e8107586f5657e7fb77e4973153e1beb9f1ad2d5f31db4135cb56006a5b8e311edc4d6a2e7f4cfbdb37db3bb26cb4337e550d5d9e3b5be8ffbc845a386
|
7
|
+
data.tar.gz: 3943ace22dbed7065268d871c5dfd5b4e46048d3c33474a2938e6e65619db190ded570559f3b1256a9c5fdc998dfea8fc841b8796e5f3665178f144fd0cca988
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,26 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [0.9.
|
4
|
-
[Full Changelog](https://github.com/chef/inspec/compare/v0.9.
|
3
|
+
## [0.9.5](https://github.com/chef/inspec/tree/0.9.5) (2015-11-25)
|
4
|
+
[Full Changelog](https://github.com/chef/inspec/compare/v0.9.4...0.9.5)
|
5
|
+
|
6
|
+
**Implemented enhancements:**
|
7
|
+
|
8
|
+
- Support the -i switch for key files as per ssh? [\#261](https://github.com/chef/inspec/issues/261)
|
9
|
+
- Add -p alias for --port like ssh [\#263](https://github.com/chef/inspec/pull/263) ([alexmanly](https://github.com/alexmanly))
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Add -i alias for --key\_files like ssh [\#262](https://github.com/chef/inspec/pull/262) ([jcreedcmu](https://github.com/jcreedcmu))
|
14
|
+
|
15
|
+
## [v0.9.4](https://github.com/chef/inspec/tree/v0.9.4) (2015-11-24)
|
16
|
+
[Full Changelog](https://github.com/chef/inspec/compare/v0.9.3...v0.9.4)
|
5
17
|
|
6
18
|
**Fixed bugs:**
|
7
19
|
|
8
20
|
- registry\_key needs to be case insensitive [\#254](https://github.com/chef/inspec/issues/254)
|
9
21
|
- User resource doesn't handle group names with spaces [\#238](https://github.com/chef/inspec/issues/238)
|
22
|
+
- bugfix: user resources support for group with whitespace [\#258](https://github.com/chef/inspec/pull/258) ([chris-rock](https://github.com/chris-rock))
|
23
|
+
- Bugfix: make registry\_key resource case-insensitive [\#255](https://github.com/chef/inspec/pull/255) ([alexpop](https://github.com/alexpop))
|
10
24
|
|
11
25
|
**Closed issues:**
|
12
26
|
|
@@ -14,9 +28,8 @@
|
|
14
28
|
|
15
29
|
**Merged pull requests:**
|
16
30
|
|
17
|
-
-
|
31
|
+
- 0.9.4 [\#259](https://github.com/chef/inspec/pull/259) ([arlimus](https://github.com/arlimus))
|
18
32
|
- Improve conf file resources \(csv, json, yaml, ini\) [\#257](https://github.com/chef/inspec/pull/257) ([chris-rock](https://github.com/chris-rock))
|
19
|
-
- Bugfix: make registry\_key resource case-insensitive [\#255](https://github.com/chef/inspec/pull/255) ([alexpop](https://github.com/alexpop))
|
20
33
|
- improvement: update install instructions and add notes for windows builds [\#253](https://github.com/chef/inspec/pull/253) ([chris-rock](https://github.com/chris-rock))
|
21
34
|
|
22
35
|
## [v0.9.3](https://github.com/chef/inspec/tree/v0.9.3) (2015-11-20)
|
data/bin/inspec
CHANGED
@@ -16,13 +16,13 @@ class InspecCLI < Thor
|
|
16
16
|
desc: 'Choose a backend: local, ssh, winrm, docker.'
|
17
17
|
option :host, type: :string,
|
18
18
|
desc: 'Specify a remote host which is tested.'
|
19
|
-
option :port, type: :numeric,
|
19
|
+
option :port, aliases: :p, type: :numeric,
|
20
20
|
desc: 'Specify the login port for a remote scan.'
|
21
21
|
option :user, type: :string, default: nil,
|
22
22
|
desc: 'The login user for a remote scan.'
|
23
23
|
option :password, type: :string, default: nil,
|
24
24
|
desc: 'Login password for a remote scan, if required.'
|
25
|
-
option :key_files, type: :array, default: nil,
|
25
|
+
option :key_files, aliases: :i, type: :array, default: nil,
|
26
26
|
desc: 'Login key or certificate file for a remote scan.'
|
27
27
|
option :path, type: :string, default: nil,
|
28
28
|
desc: 'Login path to use when connecting to the target (WinRM).'
|
data/docs/ctl_inspec.rst
CHANGED
@@ -17,7 +17,7 @@ The following options may be used with any of the InSpec CLI subcommands:
|
|
17
17
|
``--host``
|
18
18
|
The remote host to be tested.
|
19
19
|
|
20
|
-
``--
|
20
|
+
``-i``, ``--key_files``
|
21
21
|
The login key or certificate file required for remote scanning.
|
22
22
|
|
23
23
|
``--password``
|
@@ -26,7 +26,7 @@ The following options may be used with any of the InSpec CLI subcommands:
|
|
26
26
|
``--path``
|
27
27
|
The login path used to connect to the target for |winrm|.
|
28
28
|
|
29
|
-
``--port``
|
29
|
+
``-p``, ``--port``
|
30
30
|
The port over which remote scanning will occur.
|
31
31
|
|
32
32
|
``--self_signed``
|
data/lib/inspec/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dominik Richter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: r-train
|