train-core 1.4.31 → 1.4.35

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '096ddd9b85e884861709f1bcfffc3b1be99f202f40e506a3e9d07bba59f6b178'
4
- data.tar.gz: 2a1e7c6376bf4f0a44543b8a1a50d89270ea60ae71bc89cd32d447bb24fdd827
3
+ metadata.gz: 7abd9673c744cac7ee9f149c274b1ca9d19b9da890f8c89181871a0dc0aea4d8
4
+ data.tar.gz: 0d911af4ab8c1836e4fb33e43643c9af3b0fa5bbd7e94efe4f92e0f647c7e275
5
5
  SHA512:
6
- metadata.gz: db0c6f74250762ef38e5941acc67fe18447cf300443dc7198161108900ea9df78130b842d66640bfcb8fecf8dc5299f2c2b950630b0a6e16551ed5ad690a380a
7
- data.tar.gz: 47cc525c48959f6f09268ec8637ef9284b5039afcb4c5f2d1bd51d37d3e3705a8dd521a90d37e392cecd13e939909530aeb0948c49b69068248434cc52e34d52
6
+ metadata.gz: 8117f493dc84c658994d2906da925fa0300be8c1fcab9bee47093276b324001d65a514c01c82355274565f5d4dad4755788c1a383e713c8934ff3b93e19e41f2
7
+ data.tar.gz: 11a2ed9ca480fc4214018c6458c85bdf900ede597ab9d7f29c3341375385f6a9d0f8bbe16985005764b2004dbf9156e10e498b85cae28887283fbeb4ce808345
data/CHANGELOG.md CHANGED
@@ -1,19 +1,28 @@
1
- <!-- latest_release 1.4.31 -->
2
- ## [v1.4.31](https://github.com/inspec/train/tree/v1.4.31) (2018-08-16)
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
- - Enable using rubygems as plugins [#335](https://github.com/inspec/train/pull/335) ([clintoncwolfe](https://github.com/clintoncwolfe))
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.29 -->
9
- ### Changes since 1.4.29 release
8
+ <!-- release_rollup since=1.4.31 -->
9
+ ### Changes since 1.4.31 release
10
10
 
11
11
  #### Merged Pull Requests
12
- - Enable using rubygems as plugins [#335](https://github.com/inspec/train/pull/335) ([clintoncwolfe](https://github.com/clintoncwolfe)) <!-- 1.4.31 -->
13
- - Fixes an issue where the credential file was nil [#337](https://github.com/inspec/train/pull/337) ([dmccown](https://github.com/dmccown)) <!-- 1.4.30 -->
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 inventory chassis | include SN'
558
+ @platform[:uuid_command] = 'show version | include Processor'
559
559
  true
560
560
  }
561
561
 
data/lib/train/version.rb CHANGED
@@ -3,5 +3,5 @@
3
3
  # Author:: Dominik Richter (<dominik.richter@gmail.com>)
4
4
 
5
5
  module Train
6
- VERSION = '1.4.31'.freeze
6
+ VERSION = '1.4.35'.freeze
7
7
  end
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.31
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-16 00:00:00.000000000 Z
11
+ date: 2018-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout