train-core 1.4.4
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 +7 -0
- data/CHANGELOG.md +780 -0
- data/Gemfile +36 -0
- data/LICENSE +201 -0
- data/README.md +197 -0
- data/lib/train.rb +158 -0
- data/lib/train/errors.rb +32 -0
- data/lib/train/extras.rb +11 -0
- data/lib/train/extras/command_wrapper.rb +137 -0
- data/lib/train/extras/stat.rb +132 -0
- data/lib/train/file.rb +151 -0
- data/lib/train/file/local.rb +75 -0
- data/lib/train/file/local/unix.rb +96 -0
- data/lib/train/file/local/windows.rb +63 -0
- data/lib/train/file/remote.rb +36 -0
- data/lib/train/file/remote/aix.rb +21 -0
- data/lib/train/file/remote/linux.rb +19 -0
- data/lib/train/file/remote/qnx.rb +41 -0
- data/lib/train/file/remote/unix.rb +106 -0
- data/lib/train/file/remote/windows.rb +94 -0
- data/lib/train/options.rb +80 -0
- data/lib/train/platforms.rb +84 -0
- data/lib/train/platforms/common.rb +34 -0
- data/lib/train/platforms/detect.rb +12 -0
- data/lib/train/platforms/detect/helpers/os_common.rb +145 -0
- data/lib/train/platforms/detect/helpers/os_linux.rb +75 -0
- data/lib/train/platforms/detect/helpers/os_windows.rb +120 -0
- data/lib/train/platforms/detect/scanner.rb +84 -0
- data/lib/train/platforms/detect/specifications/api.rb +15 -0
- data/lib/train/platforms/detect/specifications/os.rb +578 -0
- data/lib/train/platforms/detect/uuid.rb +34 -0
- data/lib/train/platforms/family.rb +26 -0
- data/lib/train/platforms/platform.rb +101 -0
- data/lib/train/plugins.rb +40 -0
- data/lib/train/plugins/base_connection.rb +169 -0
- data/lib/train/plugins/transport.rb +49 -0
- data/lib/train/transports/local.rb +232 -0
- data/lib/train/version.rb +7 -0
- data/train-core.gemspec +27 -0
- metadata +116 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a5e350d4b4a33762ccefbfbbfd010aa66ee46d675b54235f16a1a026d1dc73ae
|
4
|
+
data.tar.gz: 3a5f7b27e1cbfdbcb4857dc8322e37e4ffc22e7305e05cda9e1158f6a9f2d8d4
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f4153a597fa50a720ab53bc0b6ffeac8cdf48c5f42c170feb4f43d373ba8daa05c5c18f21da7cd725ab8a60c6c371d83bc6d67b044a00152280c1bc6d1f32659
|
7
|
+
data.tar.gz: 366cc4ed3f43fc059ad9ca0b5cc5d1ad1c29b677549e73ce95d4dcac070f21fb81bcf7e0566bf1b8cdfeea7fa16f0f2313d506024f146da3eda4449941dc97ea
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,780 @@
|
|
1
|
+
<!-- latest_release 1.4.4 -->
|
2
|
+
## [v1.4.4](https://github.com/chef/train/tree/v1.4.4) (2018-05-02)
|
3
|
+
|
4
|
+
#### Merged Pull Requests
|
5
|
+
- Split train into a core gem. [#293](https://github.com/chef/train/pull/293) ([miah](https://github.com/miah))
|
6
|
+
- Enable expeditor release tasks [#294](https://github.com/chef/train/pull/294) ([jquick](https://github.com/jquick))
|
7
|
+
<!-- latest_release -->
|
8
|
+
|
9
|
+
<!-- release_rollup since=1.4.2 -->
|
10
|
+
### Changes since 1.4.2 release
|
11
|
+
|
12
|
+
#### Merged Pull Requests
|
13
|
+
- Split train into a core gem. [#293](https://github.com/chef/train/pull/293) ([miah](https://github.com/miah)) <!-- 1.4.4 -->
|
14
|
+
- Enable expeditor release tasks [#294](https://github.com/chef/train/pull/294) ([jquick](https://github.com/jquick)) <!-- 1.4.3 -->
|
15
|
+
<!-- release_rollup -->
|
16
|
+
|
17
|
+
<!-- latest_stable_release -->
|
18
|
+
<!-- latest_stable_release -->
|
19
|
+
|
20
|
+
# Change Log
|
21
|
+
|
22
|
+
## [1.4.2](https://github.com/chef/train/tree/1.4.2) (2018-04-26)
|
23
|
+
[Full Changelog](https://github.com/chef/train/compare/v1.4.1...1.4.2)
|
24
|
+
|
25
|
+
**Merged pull requests:**
|
26
|
+
|
27
|
+
- switched method of determining aws account id to STS [\#286](https://github.com/chef/train/pull/286) ([tkrueger](https://github.com/tkrueger))
|
28
|
+
|
29
|
+
## [v1.4.1](https://github.com/chef/train/tree/v1.4.1) (2018-04-19)
|
30
|
+
[Full Changelog](https://github.com/chef/train/compare/v1.4.0...v1.4.1)
|
31
|
+
|
32
|
+
**Merged pull requests:**
|
33
|
+
|
34
|
+
- Release 1.4.1 [\#287](https://github.com/chef/train/pull/287) ([jquick](https://github.com/jquick))
|
35
|
+
- Add UUID for Cisco IOS and Nexus devices [\#285](https://github.com/chef/train/pull/285) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
36
|
+
- Add handling for privileged exec mode [\#284](https://github.com/chef/train/pull/284) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
37
|
+
|
38
|
+
## [v1.4.0](https://github.com/chef/train/tree/v1.4.0) (2018-04-12)
|
39
|
+
[Full Changelog](https://github.com/chef/train/compare/v1.3.0...v1.4.0)
|
40
|
+
|
41
|
+
**Closed issues:**
|
42
|
+
|
43
|
+
- Train reports directories with the archive bit set as files on the windows platform [\#274](https://github.com/chef/train/issues/274)
|
44
|
+
|
45
|
+
**Merged pull requests:**
|
46
|
+
|
47
|
+
- Release 1.4.0 [\#282](https://github.com/chef/train/pull/282) ([jquick](https://github.com/jquick))
|
48
|
+
- Add CloudLinux as a detected platform [\#281](https://github.com/chef/train/pull/281) ([tarcinil](https://github.com/tarcinil))
|
49
|
+
- Move Cisco IOS connection under SSH transport [\#279](https://github.com/chef/train/pull/279) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
50
|
+
- Initialize FileManager using '@service' [\#278](https://github.com/chef/train/pull/278) ([marcparadise](https://github.com/marcparadise))
|
51
|
+
- small fix to make sure windows directories with the archive bit set a… [\#275](https://github.com/chef/train/pull/275) ([devoptimist](https://github.com/devoptimist))
|
52
|
+
|
53
|
+
## [v1.3.0](https://github.com/chef/train/tree/v1.3.0) (2018-03-29)
|
54
|
+
[Full Changelog](https://github.com/chef/train/compare/v1.2.0...v1.3.0)
|
55
|
+
|
56
|
+
**Implemented enhancements:**
|
57
|
+
|
58
|
+
- Update errors to have a base type of Train::Error [\#273](https://github.com/chef/train/pull/273) ([marcparadise](https://github.com/marcparadise))
|
59
|
+
|
60
|
+
**Closed issues:**
|
61
|
+
|
62
|
+
- RFC: Generate unique uuid for platforms [\#264](https://github.com/chef/train/issues/264)
|
63
|
+
|
64
|
+
**Merged pull requests:**
|
65
|
+
|
66
|
+
- Release Train 1.3.0 [\#276](https://github.com/chef/train/pull/276) ([jquick](https://github.com/jquick))
|
67
|
+
- Add MSI connection option for azure. [\#272](https://github.com/chef/train/pull/272) ([jquick](https://github.com/jquick))
|
68
|
+
- Add transport for Cisco IOS [\#271](https://github.com/chef/train/pull/271) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
69
|
+
- Add platform uuid information. [\#270](https://github.com/chef/train/pull/270) ([jquick](https://github.com/jquick))
|
70
|
+
|
71
|
+
## [v1.2.0](https://github.com/chef/train/tree/v1.2.0) (2018-03-15)
|
72
|
+
[Full Changelog](https://github.com/chef/train/compare/v1.1.1...v1.2.0)
|
73
|
+
|
74
|
+
**Implemented enhancements:**
|
75
|
+
|
76
|
+
- Change error message to use `connection` [\#263](https://github.com/chef/train/pull/263) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
77
|
+
|
78
|
+
**Closed issues:**
|
79
|
+
|
80
|
+
- Force 64bit powershell if using ruby32 on a 64bit os [\#265](https://github.com/chef/train/issues/265)
|
81
|
+
- Master OS detect family [\#260](https://github.com/chef/train/issues/260)
|
82
|
+
|
83
|
+
**Merged pull requests:**
|
84
|
+
|
85
|
+
- Release train 1.2.0 [\#269](https://github.com/chef/train/pull/269) ([jquick](https://github.com/jquick))
|
86
|
+
- Force 64bit powershell for 32bit ruby running on 64bit windows [\#266](https://github.com/chef/train/pull/266) ([jquick](https://github.com/jquick))
|
87
|
+
- support cisco ios xe [\#262](https://github.com/chef/train/pull/262) ([arlimus](https://github.com/arlimus))
|
88
|
+
- Create a master OS family and refactor specifications [\#261](https://github.com/chef/train/pull/261) ([jquick](https://github.com/jquick))
|
89
|
+
- Support for Brocade FOS-based SAN devices [\#254](https://github.com/chef/train/pull/254) ([marcelhuth](https://github.com/marcelhuth))
|
90
|
+
- ProxyCommand support [\#227](https://github.com/chef/train/pull/227) ([cbeckr](https://github.com/cbeckr))
|
91
|
+
|
92
|
+
## [v1.1.1](https://github.com/chef/train/tree/v1.1.1) (2018-02-14)
|
93
|
+
[Full Changelog](https://github.com/chef/train/compare/v1.1.0...v1.1.1)
|
94
|
+
|
95
|
+
**Merged pull requests:**
|
96
|
+
|
97
|
+
- Release train 1.1.1 [\#259](https://github.com/chef/train/pull/259) ([jquick](https://github.com/jquick))
|
98
|
+
- Add api sdk versions as platform release [\#258](https://github.com/chef/train/pull/258) ([jquick](https://github.com/jquick))
|
99
|
+
- Add plat helper methods to api direct platforms. [\#257](https://github.com/chef/train/pull/257) ([jquick](https://github.com/jquick))
|
100
|
+
|
101
|
+
## [v1.1.0](https://github.com/chef/train/tree/v1.1.0) (2018-02-08)
|
102
|
+
[Full Changelog](https://github.com/chef/train/compare/v1.0.0...v1.1.0)
|
103
|
+
|
104
|
+
**Closed issues:**
|
105
|
+
|
106
|
+
- Add azure:// target [\#233](https://github.com/chef/train/issues/233)
|
107
|
+
|
108
|
+
**Merged pull requests:**
|
109
|
+
|
110
|
+
- Release train 1.1.0 [\#255](https://github.com/chef/train/pull/255) ([jquick](https://github.com/jquick))
|
111
|
+
- Add qnx platform support [\#253](https://github.com/chef/train/pull/253) ([jquick](https://github.com/jquick))
|
112
|
+
- Add azure transport [\#250](https://github.com/chef/train/pull/250) ([jquick](https://github.com/jquick))
|
113
|
+
- Fix AIX and QNX file support [\#249](https://github.com/chef/train/pull/249) ([adamleff](https://github.com/adamleff))
|
114
|
+
|
115
|
+
## [v1.0.0](https://github.com/chef/train/tree/v1.0.0) (2018-02-01)
|
116
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.32.0...v1.0.0)
|
117
|
+
|
118
|
+
**Closed issues:**
|
119
|
+
|
120
|
+
- Add aws:// target [\#229](https://github.com/chef/train/issues/229)
|
121
|
+
|
122
|
+
**Merged pull requests:**
|
123
|
+
|
124
|
+
- Update version to 1.0.0 [\#248](https://github.com/chef/train/pull/248) ([jquick](https://github.com/jquick))
|
125
|
+
- cisco nexus + ios12 [\#247](https://github.com/chef/train/pull/247) ([arlimus](https://github.com/arlimus))
|
126
|
+
- Add a CONTRIBUTING.md to Train [\#245](https://github.com/chef/train/pull/245) ([miah](https://github.com/miah))
|
127
|
+
- catch detect failing to parse json [\#243](https://github.com/chef/train/pull/243) ([arlimus](https://github.com/arlimus))
|
128
|
+
- if ssh closes the session force it to reset and reopen [\#242](https://github.com/chef/train/pull/242) ([arlimus](https://github.com/arlimus))
|
129
|
+
- Add AWS transport [\#239](https://github.com/chef/train/pull/239) ([clintoncwolfe](https://github.com/clintoncwolfe))
|
130
|
+
- Fix detection of Scientific Linux [\#237](https://github.com/chef/train/pull/237) ([schrd](https://github.com/schrd))
|
131
|
+
|
132
|
+
## [v0.32.0](https://github.com/chef/train/tree/v0.32.0) (2018-01-04)
|
133
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.31.1...v0.32.0)
|
134
|
+
|
135
|
+
**Fixed bugs:**
|
136
|
+
|
137
|
+
- platform names should be lower case [\#191](https://github.com/chef/train/issues/191)
|
138
|
+
- Return platform name that is lower case and underscored [\#228](https://github.com/chef/train/pull/228) ([jquick](https://github.com/jquick))
|
139
|
+
|
140
|
+
**Merged pull requests:**
|
141
|
+
|
142
|
+
- Release 0.32.0 [\#232](https://github.com/chef/train/pull/232) ([adamleff](https://github.com/adamleff))
|
143
|
+
- Set mock transport to use the platform instance variable [\#230](https://github.com/chef/train/pull/230) ([jquick](https://github.com/jquick))
|
144
|
+
|
145
|
+
## [v0.31.1](https://github.com/chef/train/tree/v0.31.1) (2017-12-06)
|
146
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.31.0...v0.31.1)
|
147
|
+
|
148
|
+
**Merged pull requests:**
|
149
|
+
|
150
|
+
- Release 0.31.1 [\#226](https://github.com/chef/train/pull/226) ([adamleff](https://github.com/adamleff))
|
151
|
+
- Allow runner specifications for local connections [\#225](https://github.com/chef/train/pull/225) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
152
|
+
|
153
|
+
## [v0.31.0](https://github.com/chef/train/tree/v0.31.0) (2017-12-05)
|
154
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.30.0...v0.31.0)
|
155
|
+
|
156
|
+
**Fixed bugs:**
|
157
|
+
|
158
|
+
- Add release detect for failback debian [\#223](https://github.com/chef/train/pull/223) ([jquick](https://github.com/jquick))
|
159
|
+
|
160
|
+
**Merged pull requests:**
|
161
|
+
|
162
|
+
- Release 0.31.0 [\#224](https://github.com/chef/train/pull/224) ([adamleff](https://github.com/adamleff))
|
163
|
+
- Use named pipe to decrease local Windows runtime [\#220](https://github.com/chef/train/pull/220) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
164
|
+
|
165
|
+
## [v0.30.0](https://github.com/chef/train/tree/v0.30.0) (2017-12-04)
|
166
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.29.2...v0.30.0)
|
167
|
+
|
168
|
+
**Merged pull requests:**
|
169
|
+
|
170
|
+
- Release 0.30.0 [\#222](https://github.com/chef/train/pull/222) ([adamleff](https://github.com/adamleff))
|
171
|
+
- Change the mock transport name to be 'mock' [\#221](https://github.com/chef/train/pull/221) ([jquick](https://github.com/jquick))
|
172
|
+
- Enable caching on connections [\#214](https://github.com/chef/train/pull/214) ([jquick](https://github.com/jquick))
|
173
|
+
|
174
|
+
## [v0.29.2](https://github.com/chef/train/tree/v0.29.2) (2017-11-21)
|
175
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.29.1...v0.29.2)
|
176
|
+
|
177
|
+
**Fixed bugs:**
|
178
|
+
|
179
|
+
- Add unix\_mode\_mask method to Train::File::Local::Unix [\#215](https://github.com/chef/train/pull/215) ([adamleff](https://github.com/adamleff))
|
180
|
+
|
181
|
+
**Merged pull requests:**
|
182
|
+
|
183
|
+
- Fix regressions in 0.29.1 [\#219](https://github.com/chef/train/pull/219) ([adamleff](https://github.com/adamleff))
|
184
|
+
- Use the sanitized file path for remote linux files [\#218](https://github.com/chef/train/pull/218) ([RoboticCheese](https://github.com/RoboticCheese))
|
185
|
+
- Remove bundler install during Appveyor tests [\#217](https://github.com/chef/train/pull/217) ([adamleff](https://github.com/adamleff))
|
186
|
+
- Fix inspec mock tests [\#216](https://github.com/chef/train/pull/216) ([jquick](https://github.com/jquick))
|
187
|
+
- Platform framework and detect DSL [\#209](https://github.com/chef/train/pull/209) ([jquick](https://github.com/jquick))
|
188
|
+
|
189
|
+
## [v0.29.1](https://github.com/chef/train/tree/v0.29.1) (2017-11-13)
|
190
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.29.0...v0.29.1)
|
191
|
+
|
192
|
+
**Merged pull requests:**
|
193
|
+
|
194
|
+
- Release 0.29.1 [\#213](https://github.com/chef/train/pull/213) ([adamleff](https://github.com/adamleff))
|
195
|
+
- Allow for a nil value when mocking OS [\#212](https://github.com/chef/train/pull/212) ([adamleff](https://github.com/adamleff))
|
196
|
+
- Ensure a `mounted?` method exists for all File classes, including Mock [\#211](https://github.com/chef/train/pull/211) ([adamleff](https://github.com/adamleff))
|
197
|
+
|
198
|
+
## [v0.29.0](https://github.com/chef/train/tree/v0.29.0) (2017-11-13)
|
199
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.28.0...v0.29.0)
|
200
|
+
|
201
|
+
**Merged pull requests:**
|
202
|
+
|
203
|
+
- Release 0.29.0 [\#210](https://github.com/chef/train/pull/210) ([adamleff](https://github.com/adamleff))
|
204
|
+
- Reverting accidental push to master re: \#204 [\#208](https://github.com/chef/train/pull/208) ([adamleff](https://github.com/adamleff))
|
205
|
+
- clearer error if no auth methods are available [\#207](https://github.com/chef/train/pull/207) ([thommay](https://github.com/thommay))
|
206
|
+
- Build a complete mock OS object [\#206](https://github.com/chef/train/pull/206) ([adamleff](https://github.com/adamleff))
|
207
|
+
- Platform framework and detect DSL [\#204](https://github.com/chef/train/pull/204) ([jquick](https://github.com/jquick))
|
208
|
+
- add basic qnx support for train [\#203](https://github.com/chef/train/pull/203) ([chris-rock](https://github.com/chris-rock))
|
209
|
+
- Add CODEOWNERS for train [\#202](https://github.com/chef/train/pull/202) ([adamleff](https://github.com/adamleff))
|
210
|
+
- implement uploads and downloads for ssh and winrm [\#201](https://github.com/chef/train/pull/201) ([thommay](https://github.com/thommay))
|
211
|
+
- \[MSYS-649\] Fix InSpec file size in Windows, refactor File classes [\#193](https://github.com/chef/train/pull/193) ([Vasu1105](https://github.com/Vasu1105))
|
212
|
+
|
213
|
+
## [v0.28.0](https://github.com/chef/train/tree/v0.28.0) (2017-09-25)
|
214
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.27.0...v0.28.0)
|
215
|
+
|
216
|
+
**Merged pull requests:**
|
217
|
+
|
218
|
+
- Release 0.28.0 [\#200](https://github.com/chef/train/pull/200) ([adamleff](https://github.com/adamleff))
|
219
|
+
- Continue to support older net-ssh while fixing 4.2 deprecation [\#199](https://github.com/chef/train/pull/199) ([adamleff](https://github.com/adamleff))
|
220
|
+
|
221
|
+
## [v0.27.0](https://github.com/chef/train/tree/v0.27.0) (2017-09-25)
|
222
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.26.2...v0.27.0)
|
223
|
+
|
224
|
+
**Merged pull requests:**
|
225
|
+
|
226
|
+
- Release v0.27.0 [\#198](https://github.com/chef/train/pull/198) ([adamleff](https://github.com/adamleff))
|
227
|
+
- Bump to net-ssh 4.2, fix bad net-ssh deprecation [\#197](https://github.com/chef/train/pull/197) ([adamleff](https://github.com/adamleff))
|
228
|
+
|
229
|
+
## [v0.26.2](https://github.com/chef/train/tree/v0.26.2) (2017-09-05)
|
230
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.26.1...v0.26.2)
|
231
|
+
|
232
|
+
**Merged pull requests:**
|
233
|
+
|
234
|
+
- Release 0.26.2 [\#195](https://github.com/chef/train/pull/195) ([adamleff](https://github.com/adamleff))
|
235
|
+
- Fix inconsistent link\_path behavior [\#194](https://github.com/chef/train/pull/194) ([adamleff](https://github.com/adamleff))
|
236
|
+
|
237
|
+
## [v0.26.1](https://github.com/chef/train/tree/v0.26.1) (2017-08-14)
|
238
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.26.0...v0.26.1)
|
239
|
+
|
240
|
+
**Merged pull requests:**
|
241
|
+
|
242
|
+
- Release 0.26.1 [\#188](https://github.com/chef/train/pull/188) ([adamleff](https://github.com/adamleff))
|
243
|
+
- Return non-zero exit code for unknown mock command [\#187](https://github.com/chef/train/pull/187) ([chris-rock](https://github.com/chris-rock))
|
244
|
+
|
245
|
+
## [v0.26.0](https://github.com/chef/train/tree/v0.26.0) (2017-08-10)
|
246
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.25.0...v0.26.0)
|
247
|
+
|
248
|
+
**Fixed bugs:**
|
249
|
+
|
250
|
+
- AIX operating system name is not detected properly [\#181](https://github.com/chef/train/issues/181)
|
251
|
+
|
252
|
+
**Closed issues:**
|
253
|
+
|
254
|
+
- Add support for ssh-agent to ssh transport [\#129](https://github.com/chef/train/issues/129)
|
255
|
+
|
256
|
+
**Merged pull requests:**
|
257
|
+
|
258
|
+
- Release v0.26.0 [\#186](https://github.com/chef/train/pull/186) ([adamleff](https://github.com/adamleff))
|
259
|
+
- typo - should $g for group instead of doulbe $u [\#185](https://github.com/chef/train/pull/185) ([aklyachkin](https://github.com/aklyachkin))
|
260
|
+
- update ruby requirements to 2.2 - 2.4 range [\#184](https://github.com/chef/train/pull/184) ([arlimus](https://github.com/arlimus))
|
261
|
+
- detect operating system name for AIX [\#182](https://github.com/chef/train/pull/182) ([chris-rock](https://github.com/chris-rock))
|
262
|
+
|
263
|
+
## [v0.25.0](https://github.com/chef/train/tree/v0.25.0) (2017-06-15)
|
264
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.24.0...v0.25.0)
|
265
|
+
|
266
|
+
**Merged pull requests:**
|
267
|
+
|
268
|
+
- Fix CoreOS platform detection [\#180](https://github.com/chef/train/pull/180) ([rarenerd](https://github.com/rarenerd))
|
269
|
+
- Remove autoloads in favor of eager loading [\#178](https://github.com/chef/train/pull/178) ([Sharpie](https://github.com/Sharpie))
|
270
|
+
- Fixed IPv6 URI parsing [\#176](https://github.com/chef/train/pull/176) ([zfjagann](https://github.com/zfjagann))
|
271
|
+
|
272
|
+
## [v0.24.0](https://github.com/chef/train/tree/v0.24.0) (2017-05-30)
|
273
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.23.0...v0.24.0)
|
274
|
+
|
275
|
+
**Merged pull requests:**
|
276
|
+
|
277
|
+
- prevent sudo on localhost targets [\#179](https://github.com/chef/train/pull/179) ([arlimus](https://github.com/arlimus))
|
278
|
+
|
279
|
+
## [v0.23.0](https://github.com/chef/train/tree/v0.23.0) (2017-03-29)
|
280
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.22.1...v0.23.0)
|
281
|
+
|
282
|
+
**Merged pull requests:**
|
283
|
+
|
284
|
+
- Release 0.23.0 [\#173](https://github.com/chef/train/pull/173) ([adamleff](https://github.com/adamleff))
|
285
|
+
- Fix Net::SSH warning when passing nil option values [\#172](https://github.com/chef/train/pull/172) ([tylercloke](https://github.com/tylercloke))
|
286
|
+
- winrm: hide password [\#171](https://github.com/chef/train/pull/171) ([crepetl](https://github.com/crepetl))
|
287
|
+
|
288
|
+
## [v0.22.1](https://github.com/chef/train/tree/v0.22.1) (2017-01-17)
|
289
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.22.0...v0.22.1)
|
290
|
+
|
291
|
+
**Merged pull requests:**
|
292
|
+
|
293
|
+
- Release 0.22.1 [\#169](https://github.com/chef/train/pull/169) ([tduffield](https://github.com/tduffield))
|
294
|
+
- Relax net-ssh dep to allow 4.0 [\#168](https://github.com/chef/train/pull/168) ([tduffield](https://github.com/tduffield))
|
295
|
+
- Fix Oracle Linux detection [\#167](https://github.com/chef/train/pull/167) ([carldjohnston](https://github.com/carldjohnston))
|
296
|
+
- Add support for parallels & virtuozzo linux [\#166](https://github.com/chef/train/pull/166) ([jaxxstorm](https://github.com/jaxxstorm))
|
297
|
+
|
298
|
+
## [v0.22.0](https://github.com/chef/train/tree/v0.22.0) (2016-11-29)
|
299
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.21.1...v0.22.0)
|
300
|
+
|
301
|
+
**Implemented enhancements:**
|
302
|
+
|
303
|
+
- Try to use ssh agent if no password or key files have been specified [\#165](https://github.com/chef/train/pull/165) ([alexpop](https://github.com/alexpop))
|
304
|
+
|
305
|
+
**Merged pull requests:**
|
306
|
+
|
307
|
+
- Add openvms detection [\#159](https://github.com/chef/train/pull/159) ([briandoodyie](https://github.com/briandoodyie))
|
308
|
+
|
309
|
+
## [v0.21.1](https://github.com/chef/train/tree/v0.21.1) (2016-11-04)
|
310
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.21.0...v0.21.1)
|
311
|
+
|
312
|
+
**Closed issues:**
|
313
|
+
|
314
|
+
- detect\_arista\_eos raises exception against unix host [\#160](https://github.com/chef/train/issues/160)
|
315
|
+
|
316
|
+
**Merged pull requests:**
|
317
|
+
|
318
|
+
- ensure the os detection works in pty mode [\#161](https://github.com/chef/train/pull/161) ([chris-rock](https://github.com/chris-rock))
|
319
|
+
|
320
|
+
## [v0.21.0](https://github.com/chef/train/tree/v0.21.0) (2016-11-04)
|
321
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.20.1...v0.21.0)
|
322
|
+
|
323
|
+
**Implemented enhancements:**
|
324
|
+
|
325
|
+
- Train doesn't create a login shell [\#148](https://github.com/chef/train/issues/148)
|
326
|
+
|
327
|
+
**Merged pull requests:**
|
328
|
+
|
329
|
+
- Add detection for Arista EOS [\#158](https://github.com/chef/train/pull/158) ([jerearista](https://github.com/jerearista))
|
330
|
+
|
331
|
+
## [v0.20.1](https://github.com/chef/train/tree/v0.20.1) (2016-10-15)
|
332
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.20.0...v0.20.1)
|
333
|
+
|
334
|
+
**Fixed bugs:**
|
335
|
+
|
336
|
+
- support empty URIs [\#154](https://github.com/chef/train/pull/154) ([arlimus](https://github.com/arlimus))
|
337
|
+
|
338
|
+
## [v0.20.0](https://github.com/chef/train/tree/v0.20.0) (2016-09-21)
|
339
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.19.1...v0.20.0)
|
340
|
+
|
341
|
+
**Fixed bugs:**
|
342
|
+
|
343
|
+
- get `Preparing modules for first use.` when I use train on Windows [\#153](https://github.com/chef/train/issues/153)
|
344
|
+
|
345
|
+
**Merged pull requests:**
|
346
|
+
|
347
|
+
- `Preparing modules for first use.` error message on Windows [\#152](https://github.com/chef/train/pull/152) ([chris-rock](https://github.com/chris-rock))
|
348
|
+
- Convert `wmic` architecture to a normal standard [\#151](https://github.com/chef/train/pull/151) ([jerryaldrichiii](https://github.com/jerryaldrichiii))
|
349
|
+
- Login shell [\#149](https://github.com/chef/train/pull/149) ([jonathanmorley](https://github.com/jonathanmorley))
|
350
|
+
|
351
|
+
## [v0.19.1](https://github.com/chef/train/tree/v0.19.1) (2016-09-16)
|
352
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.19.0...v0.19.1)
|
353
|
+
|
354
|
+
**Implemented enhancements:**
|
355
|
+
|
356
|
+
- hostname property for WinRM::Connection [\#128](https://github.com/chef/train/issues/128)
|
357
|
+
- Return hostname from WinRM::Connection same as SSH::Connection [\#150](https://github.com/chef/train/pull/150) ([alexpop](https://github.com/alexpop))
|
358
|
+
|
359
|
+
## [v0.19.0](https://github.com/chef/train/tree/v0.19.0) (2016-09-05)
|
360
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.18.0...v0.19.0)
|
361
|
+
|
362
|
+
**Fixed bugs:**
|
363
|
+
|
364
|
+
- use stat -c for alpine linux [\#146](https://github.com/chef/train/pull/146) ([chris-rock](https://github.com/chris-rock))
|
365
|
+
|
366
|
+
**Merged pull requests:**
|
367
|
+
|
368
|
+
- support ruby 2.2.1 [\#145](https://github.com/chef/train/pull/145) ([chris-rock](https://github.com/chris-rock))
|
369
|
+
- Use winrm v2 implementation [\#122](https://github.com/chef/train/pull/122) ([mwrock](https://github.com/mwrock))
|
370
|
+
|
371
|
+
## [v0.18.0](https://github.com/chef/train/tree/v0.18.0) (2016-08-26)
|
372
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.17.0...v0.18.0)
|
373
|
+
|
374
|
+
**Merged pull requests:**
|
375
|
+
|
376
|
+
- Allow JSON 2.0 on Ruby 2.2 and above [\#144](https://github.com/chef/train/pull/144) ([jkeiser](https://github.com/jkeiser))
|
377
|
+
- Enable Ruby 2.3 in Travis, make it default suite [\#143](https://github.com/chef/train/pull/143) ([jkeiser](https://github.com/jkeiser))
|
378
|
+
- Add the darwin platform family [\#141](https://github.com/chef/train/pull/141) ([tas50](https://github.com/tas50))
|
379
|
+
- update integration test dependencies [\#139](https://github.com/chef/train/pull/139) ([tas50](https://github.com/tas50))
|
380
|
+
- Add badges to the readme [\#138](https://github.com/chef/train/pull/138) ([tas50](https://github.com/tas50))
|
381
|
+
- use --decode on base64 command to maintain compatibility with Darwin. [\#137](https://github.com/chef/train/pull/137) ([thomascate](https://github.com/thomascate))
|
382
|
+
|
383
|
+
## [v0.17.0](https://github.com/chef/train/tree/v0.17.0) (2016-08-19)
|
384
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.16.0...v0.17.0)
|
385
|
+
|
386
|
+
**Implemented enhancements:**
|
387
|
+
|
388
|
+
- return owner for files on windows [\#132](https://github.com/chef/train/pull/132) ([chris-rock](https://github.com/chris-rock))
|
389
|
+
|
390
|
+
**Closed issues:**
|
391
|
+
|
392
|
+
- prefix powershell commands with `$ProgressPreference = "SilentlyContinue"` [\#134](https://github.com/chef/train/issues/134)
|
393
|
+
|
394
|
+
**Merged pull requests:**
|
395
|
+
|
396
|
+
- CI improvements [\#133](https://github.com/chef/train/pull/133) ([chris-rock](https://github.com/chris-rock))
|
397
|
+
- Rescue EPIPE on connect in ssh transport [\#130](https://github.com/chef/train/pull/130) ([stevendanna](https://github.com/stevendanna))
|
398
|
+
|
399
|
+
## [v0.16.0](https://github.com/chef/train/tree/v0.16.0) (2016-08-08)
|
400
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.15.1...v0.16.0)
|
401
|
+
|
402
|
+
**Merged pull requests:**
|
403
|
+
|
404
|
+
- provide file\_version and product\_version for windows files [\#127](https://github.com/chef/train/pull/127) ([chris-rock](https://github.com/chris-rock))
|
405
|
+
- Bring train platform data more in line with ohai's platform data [\#126](https://github.com/chef/train/pull/126) ([stevendanna](https://github.com/stevendanna))
|
406
|
+
|
407
|
+
## [v0.15.1](https://github.com/chef/train/tree/v0.15.1) (2016-07-11)
|
408
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.15.0...v0.15.1)
|
409
|
+
|
410
|
+
**Fixed bugs:**
|
411
|
+
|
412
|
+
- bugfix: higher mode bits on local connection [\#125](https://github.com/chef/train/pull/125) ([arlimus](https://github.com/arlimus))
|
413
|
+
|
414
|
+
**Merged pull requests:**
|
415
|
+
|
416
|
+
- Test ruby 2.1 instead of 1.9.3 and only launch one test group per travis/appveyor [\#123](https://github.com/chef/train/pull/123) ([mwrock](https://github.com/mwrock))
|
417
|
+
|
418
|
+
## [v0.15.0](https://github.com/chef/train/tree/v0.15.0) (2016-07-01)
|
419
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.14.2...v0.15.0)
|
420
|
+
|
421
|
+
**Implemented enhancements:**
|
422
|
+
|
423
|
+
- have net-ssh request a pty [\#60](https://github.com/chef/train/issues/60)
|
424
|
+
|
425
|
+
**Merged pull requests:**
|
426
|
+
|
427
|
+
- Allow requesting a PTY [\#121](https://github.com/chef/train/pull/121) ([srenatus](https://github.com/srenatus))
|
428
|
+
|
429
|
+
## [v0.14.2](https://github.com/chef/train/tree/v0.14.2) (2016-06-28)
|
430
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.14.1...v0.14.2)
|
431
|
+
|
432
|
+
**Merged pull requests:**
|
433
|
+
|
434
|
+
- do not log password in ssh connection output [\#120](https://github.com/chef/train/pull/120) ([marcparadise](https://github.com/marcparadise))
|
435
|
+
|
436
|
+
## [v0.14.1](https://github.com/chef/train/tree/v0.14.1) (2016-06-27)
|
437
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.14.0...v0.14.1)
|
438
|
+
|
439
|
+
**Fixed bugs:**
|
440
|
+
|
441
|
+
- bugfix: add mock backend initialization [\#119](https://github.com/chef/train/pull/119) ([arlimus](https://github.com/arlimus))
|
442
|
+
|
443
|
+
## [v0.14.0](https://github.com/chef/train/tree/v0.14.0) (2016-06-27)
|
444
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.13.1...v0.14.0)
|
445
|
+
|
446
|
+
**Implemented enhancements:**
|
447
|
+
|
448
|
+
- json in and out for base connection [\#118](https://github.com/chef/train/pull/118) ([arlimus](https://github.com/arlimus))
|
449
|
+
- ESX support [\#116](https://github.com/chef/train/pull/116) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
|
450
|
+
|
451
|
+
**Fixed bugs:**
|
452
|
+
|
453
|
+
- sporadic appveyor failure on `winrm delete ...` [\#105](https://github.com/chef/train/issues/105)
|
454
|
+
- bugfix: run frozen string commands via ssh [\#117](https://github.com/chef/train/pull/117) ([arlimus](https://github.com/arlimus))
|
455
|
+
|
456
|
+
## [v0.13.1](https://github.com/chef/train/tree/v0.13.1) (2016-06-16)
|
457
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.13.0...v0.13.1)
|
458
|
+
|
459
|
+
**Implemented enhancements:**
|
460
|
+
|
461
|
+
- use train as gem name. Thanks @halo [\#115](https://github.com/chef/train/pull/115) ([chris-rock](https://github.com/chris-rock))
|
462
|
+
|
463
|
+
## [v0.13.0](https://github.com/chef/train/tree/v0.13.0) (2016-06-16)
|
464
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.12.1...v0.13.0)
|
465
|
+
|
466
|
+
**Implemented enhancements:**
|
467
|
+
|
468
|
+
- provide uri-formatted information on all connections [\#113](https://github.com/chef/train/pull/113) ([arlimus](https://github.com/arlimus))
|
469
|
+
|
470
|
+
**Fixed bugs:**
|
471
|
+
|
472
|
+
- Authentication with SSH Server on OSX is failing [\#111](https://github.com/chef/train/issues/111)
|
473
|
+
|
474
|
+
**Merged pull requests:**
|
475
|
+
|
476
|
+
- adding support for vmware's esx server [\#114](https://github.com/chef/train/pull/114) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
|
477
|
+
- add missing keyboard-interactive authentication method [\#112](https://github.com/chef/train/pull/112) ([chris-rock](https://github.com/chris-rock))
|
478
|
+
|
479
|
+
## [v0.12.1](https://github.com/chef/train/tree/v0.12.1) (2016-05-23)
|
480
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.12.0...v0.12.1)
|
481
|
+
|
482
|
+
**Fixed bugs:**
|
483
|
+
|
484
|
+
- loosen restriction for docker api [\#109](https://github.com/chef/train/pull/109) ([chris-rock](https://github.com/chris-rock))
|
485
|
+
|
486
|
+
**Closed issues:**
|
487
|
+
|
488
|
+
- docker-api conflict when using docker cookbook [\#108](https://github.com/chef/train/issues/108)
|
489
|
+
|
490
|
+
## [v0.12.0](https://github.com/chef/train/tree/v0.12.0) (2016-05-16)
|
491
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.11.4...v0.12.0)
|
492
|
+
|
493
|
+
**Merged pull requests:**
|
494
|
+
|
495
|
+
- Custom sudo command [\#107](https://github.com/chef/train/pull/107) ([jeremymv2](https://github.com/jeremymv2))
|
496
|
+
|
497
|
+
## [v0.11.4](https://github.com/chef/train/tree/v0.11.4) (2016-05-13)
|
498
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.11.3...v0.11.4)
|
499
|
+
|
500
|
+
**Fixed bugs:**
|
501
|
+
|
502
|
+
- mount resource incorrect matching [\#103](https://github.com/chef/train/issues/103)
|
503
|
+
- Add a space to avoid matching partial paths [\#104](https://github.com/chef/train/pull/104) ([alexpop](https://github.com/alexpop))
|
504
|
+
- Update README.md [\#102](https://github.com/chef/train/pull/102) ([mcquin](https://github.com/mcquin))
|
505
|
+
|
506
|
+
**Merged pull requests:**
|
507
|
+
|
508
|
+
- 0.11.4 [\#106](https://github.com/chef/train/pull/106) ([arlimus](https://github.com/arlimus))
|
509
|
+
|
510
|
+
## [v0.11.3](https://github.com/chef/train/tree/v0.11.3) (2016-05-10)
|
511
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.11.2...v0.11.3)
|
512
|
+
|
513
|
+
**Fixed bugs:**
|
514
|
+
|
515
|
+
- appveyor fixing... [\#98](https://github.com/chef/train/pull/98) ([arlimus](https://github.com/arlimus))
|
516
|
+
|
517
|
+
**Merged pull requests:**
|
518
|
+
|
519
|
+
- fix: winrm https listener is not configured anymore in appveyor [\#100](https://github.com/chef/train/pull/100) ([chris-rock](https://github.com/chris-rock))
|
520
|
+
- use aix stats implementation for hpux as well [\#99](https://github.com/chef/train/pull/99) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
|
521
|
+
|
522
|
+
## [v0.11.2](https://github.com/chef/train/tree/v0.11.2) (2016-04-29)
|
523
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.11.1...v0.11.2)
|
524
|
+
|
525
|
+
**Fixed bugs:**
|
526
|
+
|
527
|
+
- bugfix: windows file failed to initialize with new symlink handler [\#96](https://github.com/chef/train/pull/96) ([arlimus](https://github.com/arlimus))
|
528
|
+
|
529
|
+
**Merged pull requests:**
|
530
|
+
|
531
|
+
- 0.11.2 [\#97](https://github.com/chef/train/pull/97) ([alexpop](https://github.com/alexpop))
|
532
|
+
|
533
|
+
## [v0.11.1](https://github.com/chef/train/tree/v0.11.1) (2016-04-28)
|
534
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.11.0...v0.11.1)
|
535
|
+
|
536
|
+
**Fixed bugs:**
|
537
|
+
|
538
|
+
- fix nil file paths [\#94](https://github.com/chef/train/pull/94) ([arlimus](https://github.com/arlimus))
|
539
|
+
|
540
|
+
**Merged pull requests:**
|
541
|
+
|
542
|
+
- provide a source path for filecommon [\#95](https://github.com/chef/train/pull/95) ([arlimus](https://github.com/arlimus))
|
543
|
+
- restructure docker tests to balance load between 2 runs [\#93](https://github.com/chef/train/pull/93) ([arlimus](https://github.com/arlimus))
|
544
|
+
|
545
|
+
## [v0.11.0](https://github.com/chef/train/tree/v0.11.0) (2016-04-28)
|
546
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.10.8...v0.11.0)
|
547
|
+
|
548
|
+
**Implemented enhancements:**
|
549
|
+
|
550
|
+
- Overhault file\(...\) and stat\(...\); point to destination of symlinks [\#92](https://github.com/chef/train/pull/92) ([arlimus](https://github.com/arlimus))
|
551
|
+
|
552
|
+
**Fixed bugs:**
|
553
|
+
|
554
|
+
- validate the backend configuration [\#91](https://github.com/chef/train/pull/91) ([arlimus](https://github.com/arlimus))
|
555
|
+
|
556
|
+
## [v0.10.8](https://github.com/chef/train/tree/v0.10.8) (2016-04-25)
|
557
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.10.7...v0.10.8)
|
558
|
+
|
559
|
+
**Implemented enhancements:**
|
560
|
+
|
561
|
+
- loose restriction for mixlib-shellout [\#89](https://github.com/chef/train/pull/89) ([chris-rock](https://github.com/chris-rock))
|
562
|
+
|
563
|
+
**Merged pull requests:**
|
564
|
+
|
565
|
+
- use gemspec for travis [\#90](https://github.com/chef/train/pull/90) ([chris-rock](https://github.com/chris-rock))
|
566
|
+
- Don't strip off the second byte of the octal mode. [\#88](https://github.com/chef/train/pull/88) ([justindossey](https://github.com/justindossey))
|
567
|
+
|
568
|
+
## [v0.10.7](https://github.com/chef/train/tree/v0.10.7) (2016-04-21)
|
569
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.10.6...v0.10.7)
|
570
|
+
|
571
|
+
**Merged pull requests:**
|
572
|
+
|
573
|
+
- 0.10.7 [\#87](https://github.com/chef/train/pull/87) ([arlimus](https://github.com/arlimus))
|
574
|
+
- Revert "add -L to get stat for symlink" [\#86](https://github.com/chef/train/pull/86) ([arlimus](https://github.com/arlimus))
|
575
|
+
|
576
|
+
## [v0.10.6](https://github.com/chef/train/tree/v0.10.6) (2016-04-20)
|
577
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.10.5...v0.10.6)
|
578
|
+
|
579
|
+
**Merged pull requests:**
|
580
|
+
|
581
|
+
- add -L to get stat for symlink [\#85](https://github.com/chef/train/pull/85) ([vjeffrey](https://github.com/vjeffrey))
|
582
|
+
- release via travis + test via rubygems [\#84](https://github.com/chef/train/pull/84) ([arlimus](https://github.com/arlimus))
|
583
|
+
|
584
|
+
## [v0.10.5](https://github.com/chef/train/tree/v0.10.5) (2016-04-18)
|
585
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.10.4...v0.10.5)
|
586
|
+
|
587
|
+
**Merged pull requests:**
|
588
|
+
|
589
|
+
- 0.10.5 [\#83](https://github.com/chef/train/pull/83) ([srenatus](https://github.com/srenatus))
|
590
|
+
- detection for hp-ux machine [\#82](https://github.com/chef/train/pull/82) ([Anirudh-Gupta](https://github.com/Anirudh-Gupta))
|
591
|
+
|
592
|
+
## [v0.10.4](https://github.com/chef/train/tree/v0.10.4) (2016-03-31)
|
593
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.10.3...v0.10.4)
|
594
|
+
|
595
|
+
**Fixed bugs:**
|
596
|
+
|
597
|
+
- bugfix: do not use unix path escape for windows [\#79](https://github.com/chef/train/pull/79) ([chris-rock](https://github.com/chris-rock))
|
598
|
+
|
599
|
+
**Merged pull requests:**
|
600
|
+
|
601
|
+
- 0.10.4 [\#80](https://github.com/chef/train/pull/80) ([arlimus](https://github.com/arlimus))
|
602
|
+
|
603
|
+
## [v0.10.3](https://github.com/chef/train/tree/v0.10.3) (2016-03-07)
|
604
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.10.1...v0.10.3)
|
605
|
+
|
606
|
+
**Fixed bugs:**
|
607
|
+
|
608
|
+
- set default value for ssh compression to false [\#77](https://github.com/chef/train/pull/77) ([chris-rock](https://github.com/chris-rock))
|
609
|
+
- avoid mock backend error on nil commands [\#75](https://github.com/chef/train/pull/75) ([arlimus](https://github.com/arlimus))
|
610
|
+
|
611
|
+
**Merged pull requests:**
|
612
|
+
|
613
|
+
- 0.10.3 [\#78](https://github.com/chef/train/pull/78) ([chris-rock](https://github.com/chris-rock))
|
614
|
+
- 0.10.2 [\#76](https://github.com/chef/train/pull/76) ([arlimus](https://github.com/arlimus))
|
615
|
+
|
616
|
+
## [v0.10.1](https://github.com/chef/train/tree/v0.10.1) (2016-02-29)
|
617
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.10.0...v0.10.1)
|
618
|
+
|
619
|
+
**Merged pull requests:**
|
620
|
+
|
621
|
+
- 0.10.1 [\#74](https://github.com/chef/train/pull/74) ([chris-rock](https://github.com/chris-rock))
|
622
|
+
- fix gem build license warning [\#73](https://github.com/chef/train/pull/73) ([chris-rock](https://github.com/chris-rock))
|
623
|
+
- depend on docker-api 1.26.2 [\#72](https://github.com/chef/train/pull/72) ([someara](https://github.com/someara))
|
624
|
+
|
625
|
+
## [v0.10.0](https://github.com/chef/train/tree/v0.10.0) (2016-02-19)
|
626
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.9.7...v0.10.0)
|
627
|
+
|
628
|
+
**Implemented enhancements:**
|
629
|
+
|
630
|
+
- show mock failures for commands [\#69](https://github.com/chef/train/pull/69) ([arlimus](https://github.com/arlimus))
|
631
|
+
- update gems and rubocop [\#68](https://github.com/chef/train/pull/68) ([arlimus](https://github.com/arlimus))
|
632
|
+
|
633
|
+
**Fixed bugs:**
|
634
|
+
|
635
|
+
- complete rewrite of windows version detection [\#70](https://github.com/chef/train/pull/70) ([chris-rock](https://github.com/chris-rock))
|
636
|
+
|
637
|
+
**Merged pull requests:**
|
638
|
+
|
639
|
+
- 0.10.0 [\#71](https://github.com/chef/train/pull/71) ([chris-rock](https://github.com/chris-rock))
|
640
|
+
|
641
|
+
## [v0.9.7](https://github.com/chef/train/tree/v0.9.7) (2016-02-05)
|
642
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.9.6...v0.9.7)
|
643
|
+
|
644
|
+
**Implemented enhancements:**
|
645
|
+
|
646
|
+
- feature: add file.basename [\#64](https://github.com/chef/train/pull/64) ([arlimus](https://github.com/arlimus))
|
647
|
+
- add `requiretty` workaround measures [\#63](https://github.com/chef/train/pull/63) ([srenatus](https://github.com/srenatus))
|
648
|
+
|
649
|
+
**Fixed bugs:**
|
650
|
+
|
651
|
+
- ensure bundler is installed on travis [\#66](https://github.com/chef/train/pull/66) ([chris-rock](https://github.com/chris-rock))
|
652
|
+
|
653
|
+
**Merged pull requests:**
|
654
|
+
|
655
|
+
- 0.9.7 [\#67](https://github.com/chef/train/pull/67) ([chris-rock](https://github.com/chris-rock))
|
656
|
+
|
657
|
+
## [v0.9.6](https://github.com/chef/train/tree/v0.9.6) (2016-01-29)
|
658
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.9.5...v0.9.6)
|
659
|
+
|
660
|
+
**Implemented enhancements:**
|
661
|
+
|
662
|
+
- add solaris support [\#61](https://github.com/chef/train/pull/61) ([chris-rock](https://github.com/chris-rock))
|
663
|
+
|
664
|
+
**Merged pull requests:**
|
665
|
+
|
666
|
+
- 0.9.6 [\#62](https://github.com/chef/train/pull/62) ([chris-rock](https://github.com/chris-rock))
|
667
|
+
|
668
|
+
## [v0.9.5](https://github.com/chef/train/tree/v0.9.5) (2016-01-25)
|
669
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.9.4...v0.9.5)
|
670
|
+
|
671
|
+
**Implemented enhancements:**
|
672
|
+
|
673
|
+
- use minitest for windows tests [\#56](https://github.com/chef/train/pull/56) ([chris-rock](https://github.com/chris-rock))
|
674
|
+
- use negotiate auth for winrm and not basic\_auth [\#55](https://github.com/chef/train/pull/55) ([mwrock](https://github.com/mwrock))
|
675
|
+
- bugfix: pin net-ssh 2.9 in gem file [\#54](https://github.com/chef/train/pull/54) ([chris-rock](https://github.com/chris-rock))
|
676
|
+
- Add appveyor and Windows test [\#53](https://github.com/chef/train/pull/53) ([chris-rock](https://github.com/chris-rock))
|
677
|
+
- Deprecating winrm-tansport gem [\#46](https://github.com/chef/train/pull/46) ([mwrock](https://github.com/mwrock))
|
678
|
+
|
679
|
+
**Fixed bugs:**
|
680
|
+
|
681
|
+
- Cannot install train on Windows with ChefDK if username \>9 chars in length due to spec filename lengths in docker-api gem. [\#28](https://github.com/chef/train/issues/28)
|
682
|
+
- Properly wrap commands in powershell for local backend [\#57](https://github.com/chef/train/pull/57) ([chris-rock](https://github.com/chris-rock))
|
683
|
+
- Copying https://github.com/test-kitchen/test-kitchen/pull/919 to this repo [\#52](https://github.com/chef/train/pull/52) ([tyler-ball](https://github.com/tyler-ball))
|
684
|
+
|
685
|
+
**Merged pull requests:**
|
686
|
+
|
687
|
+
- 0.9.5 [\#58](https://github.com/chef/train/pull/58) ([chris-rock](https://github.com/chris-rock))
|
688
|
+
|
689
|
+
## [v0.9.4](https://github.com/chef/train/tree/v0.9.4) (2016-01-15)
|
690
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.9.3...v0.9.4)
|
691
|
+
|
692
|
+
**Implemented enhancements:**
|
693
|
+
|
694
|
+
- 0.9.3 is empty on Windows [\#48](https://github.com/chef/train/pull/48) ([tyler-ball](https://github.com/tyler-ball))
|
695
|
+
- Updating to the latest release of net-ssh to consume https://github.com/net-ssh/net-ssh/pull/280 [\#47](https://github.com/chef/train/pull/47) ([tyler-ball](https://github.com/tyler-ball))
|
696
|
+
|
697
|
+
**Fixed bugs:**
|
698
|
+
|
699
|
+
- bugfix: command wrapper always return nil [\#50](https://github.com/chef/train/pull/50) ([chris-rock](https://github.com/chris-rock))
|
700
|
+
|
701
|
+
**Merged pull requests:**
|
702
|
+
|
703
|
+
- 0.9.4 [\#51](https://github.com/chef/train/pull/51) ([chris-rock](https://github.com/chris-rock))
|
704
|
+
|
705
|
+
## [v0.9.3](https://github.com/chef/train/tree/v0.9.3) (2016-01-03)
|
706
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.9.2...v0.9.3)
|
707
|
+
|
708
|
+
**Implemented enhancements:**
|
709
|
+
|
710
|
+
- introduce `mounted` as a separate method to retrieve the content [\#44](https://github.com/chef/train/pull/44) ([chris-rock](https://github.com/chris-rock))
|
711
|
+
- Support for local transport on Windows [\#43](https://github.com/chef/train/pull/43) ([chris-rock](https://github.com/chris-rock))
|
712
|
+
- Split integration test preparation from executing [\#42](https://github.com/chef/train/pull/42) ([chris-rock](https://github.com/chris-rock))
|
713
|
+
- Support for AIX and targeted SSH testing [\#41](https://github.com/chef/train/pull/41) ([foobarbam](https://github.com/foobarbam))
|
714
|
+
|
715
|
+
**Merged pull requests:**
|
716
|
+
|
717
|
+
- 0.9.3 [\#45](https://github.com/chef/train/pull/45) ([chris-rock](https://github.com/chris-rock))
|
718
|
+
|
719
|
+
## [v0.9.2](https://github.com/chef/train/tree/v0.9.2) (2015-12-11)
|
720
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.9.1...v0.9.2)
|
721
|
+
|
722
|
+
**Implemented enhancements:**
|
723
|
+
|
724
|
+
- add changelog [\#38](https://github.com/chef/train/pull/38) ([chris-rock](https://github.com/chris-rock))
|
725
|
+
- activate integration tests in travis [\#37](https://github.com/chef/train/pull/37) ([chris-rock](https://github.com/chris-rock))
|
726
|
+
- Adding support for Wind River Linux in support of Cisco devices [\#33](https://github.com/chef/train/pull/33) ([adamleff](https://github.com/adamleff))
|
727
|
+
|
728
|
+
**Fixed bugs:**
|
729
|
+
|
730
|
+
- Integration test failures [\#34](https://github.com/chef/train/issues/34)
|
731
|
+
- Implemented WindowsFile\#exist? [\#36](https://github.com/chef/train/pull/36) ([docwhat](https://github.com/docwhat))
|
732
|
+
- adapt integration test to changes in command\_wrapper [\#35](https://github.com/chef/train/pull/35) ([srenatus](https://github.com/srenatus))
|
733
|
+
|
734
|
+
**Closed issues:**
|
735
|
+
|
736
|
+
- WinRM plaintext transport is hardcoded \(cannot use SSL\) [\#29](https://github.com/chef/train/issues/29)
|
737
|
+
|
738
|
+
**Merged pull requests:**
|
739
|
+
|
740
|
+
- 0.9.2 [\#40](https://github.com/chef/train/pull/40) ([arlimus](https://github.com/arlimus))
|
741
|
+
- add rake version helpers [\#39](https://github.com/chef/train/pull/39) ([arlimus](https://github.com/arlimus))
|
742
|
+
|
743
|
+
## [v0.9.1](https://github.com/chef/train/tree/v0.9.1) (2015-11-03)
|
744
|
+
[Full Changelog](https://github.com/chef/train/compare/0.9.0...v0.9.1)
|
745
|
+
|
746
|
+
**Implemented enhancements:**
|
747
|
+
|
748
|
+
- R train [\#27](https://github.com/chef/train/pull/27) ([arlimus](https://github.com/arlimus))
|
749
|
+
- Update style of readme [\#26](https://github.com/chef/train/pull/26) ([chris-rock](https://github.com/chris-rock))
|
750
|
+
- Add Apache 2.0 License [\#25](https://github.com/chef/train/pull/25) ([jamesc](https://github.com/jamesc))
|
751
|
+
|
752
|
+
## [0.9.0](https://github.com/chef/train/tree/0.9.0) (2015-11-03)
|
753
|
+
**Implemented enhancements:**
|
754
|
+
|
755
|
+
- set windows name in :release [\#23](https://github.com/chef/train/pull/23) ([arlimus](https://github.com/arlimus))
|
756
|
+
- basic file transport via winrm [\#21](https://github.com/chef/train/pull/21) ([chris-rock](https://github.com/chris-rock))
|
757
|
+
- dont return nil on command errors stdout/stderr [\#20](https://github.com/chef/train/pull/20) ([arlimus](https://github.com/arlimus))
|
758
|
+
- skip .delivery in gemspec [\#19](https://github.com/chef/train/pull/19) ([arlimus](https://github.com/arlimus))
|
759
|
+
- Verify sudo is working and fail with error messages if it isn't [\#18](https://github.com/chef/train/pull/18) ([arlimus](https://github.com/arlimus))
|
760
|
+
- improve file eposure [\#16](https://github.com/chef/train/pull/16) ([chris-rock](https://github.com/chris-rock))
|
761
|
+
- add delivery [\#13](https://github.com/chef/train/pull/13) ([arlimus](https://github.com/arlimus))
|
762
|
+
- Sudo [\#12](https://github.com/chef/train/pull/12) ([arlimus](https://github.com/arlimus))
|
763
|
+
- Extract options handling for transport [\#11](https://github.com/chef/train/pull/11) ([arlimus](https://github.com/arlimus))
|
764
|
+
- don't let mock commands return nil on stdout or stderr [\#10](https://github.com/chef/train/pull/10) ([arlimus](https://github.com/arlimus))
|
765
|
+
- allow mock command to support sha256 mocking of commands [\#9](https://github.com/chef/train/pull/9) ([arlimus](https://github.com/arlimus))
|
766
|
+
- register plugins with both names and symbols [\#8](https://github.com/chef/train/pull/8) ([arlimus](https://github.com/arlimus))
|
767
|
+
- split of mock into transport and connection [\#7](https://github.com/chef/train/pull/7) ([arlimus](https://github.com/arlimus))
|
768
|
+
- bugfix: add docker dependency to gemspec [\#6](https://github.com/chef/train/pull/6) ([arlimus](https://github.com/arlimus))
|
769
|
+
- move train/plugins/common to train/extras [\#2](https://github.com/chef/train/pull/2) ([arlimus](https://github.com/arlimus))
|
770
|
+
- add Travis [\#1](https://github.com/chef/train/pull/1) ([arlimus](https://github.com/arlimus))
|
771
|
+
|
772
|
+
**Fixed bugs:**
|
773
|
+
|
774
|
+
- bugfix: prevent debugging info to stdout on winrm [\#22](https://github.com/chef/train/pull/22) ([arlimus](https://github.com/arlimus))
|
775
|
+
- bugfix: fail ssh connections correctly [\#17](https://github.com/chef/train/pull/17) ([arlimus](https://github.com/arlimus))
|
776
|
+
- bugfix: initialize mock transport to correct family [\#14](https://github.com/chef/train/pull/14) ([arlimus](https://github.com/arlimus))
|
777
|
+
|
778
|
+
**Merged pull requests:**
|
779
|
+
|
780
|
+
- bump train version to 0.9.0 [\#24](https://github.com/chef/train/pull/24) ([chris-rock](https://github.com/chris-rock))
|