train-core 1.4.15 → 1.4.19

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7805799b5b97d3b08f81da4541c45e92387f2fdccd51d7e1acd399d5c3c6fff
4
- data.tar.gz: b46ec1e385e9e23a963da63af3e40034bca9ff1e939160dc4314173ff381c212
3
+ metadata.gz: 909d48320e69f1400b198e7df9d1360c014adc07ffefd3cd0f186b043eff4704
4
+ data.tar.gz: 93d13033246686b86db1a552dd5d1b125b81e344222ecdbbc5f0748fdd3865c1
5
5
  SHA512:
6
- metadata.gz: 1f99ac1e603296c34c3442fc6c0d2de422f8c55614b7dec1fbd921d04d64ef53b5e71074ef625834a638e8cf020b1ad93ea2d529f777a78981114272f385e8b7
7
- data.tar.gz: f6eb84dcdc248671e1ec0df04ef5f9efc3651d2844962d54e8ac10aaf1cf6d2c0addbb92d7ab76a231cd81e4dbef310fe56652eb02ab891eb0f1b46f48e03d51
6
+ metadata.gz: ebe0b059a54a2cbbd2925136610022dd8609ae8cb49f8165feca4d5d421756d998c7ef600bd1c0866d03947fb9c56e8f10cf2dea2032d90d2e19ebfe28faab2f
7
+ data.tar.gz: 7b4948ea23d6ec808091fbd3254e0ff8cf98104e6a438591be04da895f1b8436760186014d76949646f6e05d71ed68169db25587614a6a0709e7d340f5f2b1d2
data/CHANGELOG.md CHANGED
@@ -1,26 +1,34 @@
1
- <!-- latest_release 1.4.15 -->
2
- ## [v1.4.15](https://github.com/inspec/train/tree/v1.4.15) (2018-06-14)
1
+ <!-- latest_release 1.4.19 -->
2
+ ## [v1.4.19](https://github.com/inspec/train/tree/v1.4.19) (2018-06-29)
3
3
 
4
4
  #### Merged Pull Requests
5
- - Don&#39;t double-escape paths [#306](https://github.com/inspec/train/pull/306) ([voroniys](https://github.com/voroniys))
5
+ - Remove the deploy config from Travis [#315](https://github.com/inspec/train/pull/315) ([tas50](https://github.com/tas50))
6
6
  <!-- latest_release -->
7
7
 
8
- <!-- release_rollup since=1.4.11 -->
9
- ### Changes since 1.4.11 release
8
+ <!-- release_rollup since=1.4.15 -->
9
+ ### Changes since 1.4.15 release
10
10
 
11
11
  #### Merged Pull Requests
12
- - Don&#39;t double-escape paths [#306](https://github.com/inspec/train/pull/306) ([voroniys](https://github.com/voroniys)) <!-- 1.4.15 -->
13
- - Add the mock transport to train-core [#308](https://github.com/inspec/train/pull/308) ([jquick](https://github.com/jquick)) <!-- 1.4.14 -->
14
- - Adding Oneview to platform detection. [#307](https://github.com/inspec/train/pull/307) ([skpaterson](https://github.com/skpaterson)) <!-- 1.4.13 -->
15
- - Allow TrainError to provide a supplement reason [#303](https://github.com/chef/train/pull/303) ([marcparadise](https://github.com/marcparadise)) <!-- 1.4.12 -->
12
+ - Remove the deploy config from Travis [#315](https://github.com/inspec/train/pull/315) ([tas50](https://github.com/tas50)) <!-- 1.4.19 -->
13
+ - Remove github_changelog_generator [#313](https://github.com/inspec/train/pull/313) ([tas50](https://github.com/tas50)) <!-- 1.4.18 -->
14
+ - Adding proper bastion support [#310](https://github.com/inspec/train/pull/310) ([frezbo](https://github.com/frezbo)) <!-- 1.4.17 -->
15
+ - Fix detection of amazon linux 2 [#312](https://github.com/inspec/train/pull/312) ([artem-sidorenko](https://github.com/artem-sidorenko)) <!-- 1.4.16 -->
16
16
  <!-- release_rollup -->
17
17
 
18
18
  <!-- latest_stable_release -->
19
+ ## [v1.4.15](https://github.com/inspec/train/tree/v1.4.15) (2018-06-14)
20
+
21
+ #### Merged Pull Requests
22
+ - Allow TrainError to provide a supplement reason [#303](https://github.com/chef/train/pull/303) ([marcparadise](https://github.com/marcparadise))
23
+ - Adding Oneview to platform detection. [#307](https://github.com/inspec/train/pull/307) ([skpaterson](https://github.com/skpaterson))
24
+ - Add the mock transport to train-core [#308](https://github.com/inspec/train/pull/308) ([jquick](https://github.com/jquick))
25
+ - Don&#39;t double-escape paths [#306](https://github.com/inspec/train/pull/306) ([voroniys](https://github.com/voroniys))
26
+ <!-- latest_stable_release -->
27
+
19
28
  ## [v1.4.11](https://github.com/chef/train/tree/v1.4.11) (2018-05-17)
20
29
 
21
30
  #### Merged Pull Requests
22
31
  - Add required env for azure shell msi headers [#302](https://github.com/chef/train/pull/302) ([jquick](https://github.com/jquick))
23
- <!-- latest_stable_release -->
24
32
 
25
33
  ## [v1.4.10](https://github.com/chef/train/tree/v1.4.10) (2018-05-17)
26
34
 
data/Gemfile CHANGED
@@ -10,7 +10,6 @@ end
10
10
 
11
11
  if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.2.2')
12
12
  gem 'json', '< 2.0'
13
- gem 'rack', '< 2.0'
14
13
  end
15
14
 
16
15
  group :test do
@@ -32,5 +31,4 @@ group :tools do
32
31
  gem 'pry', '~> 0.10'
33
32
  gem 'rb-readline'
34
33
  gem 'license_finder'
35
- gem 'github_changelog_generator', '~> 1'
36
34
  end
@@ -10,7 +10,9 @@ module Train::Platforms::Detect::Helpers
10
10
  case conf
11
11
  when /rawhide/i
12
12
  /((\d+) \(Rawhide\))/i.match(conf)[1].downcase
13
- when /derived from .*linux/i
13
+ when /Amazon Linux AMI/i
14
+ /release ([\d\.]+)/.match(conf)[1]
15
+ when /derived from .*linux|amazon/i
14
16
  /Linux ((\d+|\.)+)/i.match(conf)[1]
15
17
  else
16
18
  /release ([\d\.]+)/.match(conf)[1]
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.15'.freeze
6
+ VERSION = '1.4.19'.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.15
4
+ version: 1.4.19
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-06-14 00:00:00.000000000 Z
11
+ date: 2018-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout