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 +4 -4
- data/CHANGELOG.md +18 -10
- data/Gemfile +0 -2
- data/lib/train/platforms/detect/helpers/os_linux.rb +3 -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: 909d48320e69f1400b198e7df9d1360c014adc07ffefd3cd0f186b043eff4704
|
|
4
|
+
data.tar.gz: 93d13033246686b86db1a552dd5d1b125b81e344222ecdbbc5f0748fdd3865c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebe0b059a54a2cbbd2925136610022dd8609ae8cb49f8165feca4d5d421756d998c7ef600bd1c0866d03947fb9c56e8f10cf2dea2032d90d2e19ebfe28faab2f
|
|
7
|
+
data.tar.gz: 7b4948ea23d6ec808091fbd3254e0ff8cf98104e6a438591be04da895f1b8436760186014d76949646f6e05d71ed68169db25587614a6a0709e7d340f5f2b1d2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,26 +1,34 @@
|
|
|
1
|
-
<!-- latest_release 1.4.
|
|
2
|
-
## [v1.4.
|
|
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
|
-
-
|
|
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.
|
|
9
|
-
### Changes since 1.4.
|
|
8
|
+
<!-- release_rollup since=1.4.15 -->
|
|
9
|
+
### Changes since 1.4.15 release
|
|
10
10
|
|
|
11
11
|
#### Merged Pull Requests
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
- Adding
|
|
15
|
-
-
|
|
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'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 /
|
|
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
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.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-
|
|
11
|
+
date: 2018-06-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|