train-core 1.4.31 → 1.4.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -8
- data/lib/train/platforms/detect/specifications/os.rb +1 -1
- data/lib/train/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7abd9673c744cac7ee9f149c274b1ca9d19b9da890f8c89181871a0dc0aea4d8
|
|
4
|
+
data.tar.gz: 0d911af4ab8c1836e4fb33e43643c9af3b0fa5bbd7e94efe4f92e0f647c7e275
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8117f493dc84c658994d2906da925fa0300be8c1fcab9bee47093276b324001d65a514c01c82355274565f5d4dad4755788c1a383e713c8934ff3b93e19e41f2
|
|
7
|
+
data.tar.gz: 11a2ed9ca480fc4214018c6458c85bdf900ede597ab9d7f29c3341375385f6a9d0f8bbe16985005764b2004dbf9156e10e498b85cae28887283fbeb4ce808345
|
data/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,28 @@
|
|
|
1
|
-
<!-- latest_release 1.4.
|
|
2
|
-
## [v1.4.
|
|
1
|
+
<!-- latest_release 1.4.35 -->
|
|
2
|
+
## [v1.4.35](https://github.com/inspec/train/tree/v1.4.35) (2018-08-23)
|
|
3
3
|
|
|
4
4
|
#### Merged Pull Requests
|
|
5
|
-
-
|
|
5
|
+
- Adds connection to Graph RBAC API [#327](https://github.com/inspec/train/pull/327) ([r-fennell](https://github.com/r-fennell))
|
|
6
6
|
<!-- latest_release -->
|
|
7
7
|
|
|
8
|
-
<!-- release_rollup since=1.4.
|
|
9
|
-
### Changes since 1.4.
|
|
8
|
+
<!-- release_rollup since=1.4.31 -->
|
|
9
|
+
### Changes since 1.4.31 release
|
|
10
10
|
|
|
11
11
|
#### Merged Pull Requests
|
|
12
|
-
-
|
|
13
|
-
- Fixes
|
|
12
|
+
- Adds connection to Graph RBAC API [#327](https://github.com/inspec/train/pull/327) ([r-fennell](https://github.com/r-fennell)) <!-- 1.4.35 -->
|
|
13
|
+
- Fixes failing test when you have a cred file [#343](https://github.com/inspec/train/pull/343) ([dmccown](https://github.com/dmccown)) <!-- 1.4.34 -->
|
|
14
|
+
- Modify Cisco UUID detection to use processor ID [#342](https://github.com/inspec/train/pull/342) ([jerryaldrichiii](https://github.com/jerryaldrichiii)) <!-- 1.4.33 -->
|
|
15
|
+
- Ensure unique_identifier returns something meaningful for service acc… [#338](https://github.com/inspec/train/pull/338) ([skpaterson](https://github.com/skpaterson)) <!-- 1.4.32 -->
|
|
14
16
|
<!-- release_rollup -->
|
|
15
17
|
|
|
16
18
|
<!-- latest_stable_release -->
|
|
19
|
+
## [v1.4.31](https://github.com/inspec/train/tree/v1.4.31) (2018-08-17)
|
|
20
|
+
|
|
21
|
+
#### Merged Pull Requests
|
|
22
|
+
- Fixes an issue where the credential file was nil [#337](https://github.com/inspec/train/pull/337) ([dmccown](https://github.com/dmccown))
|
|
23
|
+
- Enable using rubygems as plugins [#335](https://github.com/inspec/train/pull/335) ([clintoncwolfe](https://github.com/clintoncwolfe))
|
|
24
|
+
<!-- latest_stable_release -->
|
|
25
|
+
|
|
17
26
|
## [v1.4.29](https://github.com/inspec/train/tree/v1.4.29) (2018-08-15)
|
|
18
27
|
|
|
19
28
|
#### Features & Enhancements
|
|
@@ -23,7 +32,6 @@
|
|
|
23
32
|
- Modify checksum logic to use system binaries [#251](https://github.com/inspec/train/pull/251) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
|
24
33
|
- Require Ruby 2.0 and allow net-ssh 5.0 [#334](https://github.com/inspec/train/pull/334) ([tas50](https://github.com/tas50))
|
|
25
34
|
- Add non_interactive support for SSH [#336](https://github.com/inspec/train/pull/336) ([marcparadise](https://github.com/marcparadise))
|
|
26
|
-
<!-- latest_stable_release -->
|
|
27
35
|
|
|
28
36
|
## [v1.4.25](https://github.com/inspec/train/tree/v1.4.25) (2018-08-01)
|
|
29
37
|
|
|
@@ -555,7 +555,7 @@ module Train::Platforms::Detect::Specifications
|
|
|
555
555
|
next unless v[:type] == 'nexus'
|
|
556
556
|
@platform[:release] = v[:version]
|
|
557
557
|
@platform[:arch] = nil
|
|
558
|
-
@platform[:uuid_command] = 'show
|
|
558
|
+
@platform[:uuid_command] = 'show version | include Processor'
|
|
559
559
|
true
|
|
560
560
|
}
|
|
561
561
|
|
data/lib/train/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: train-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.35
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dominik Richter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-08-
|
|
11
|
+
date: 2018-08-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|