aruba 0.14.9 → 1.0.0

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.
Files changed (309) hide show
  1. checksums.yaml +4 -4
  2. data/.cucumberproignore +3 -0
  3. data/.github/ISSUE_TEMPLATE.md +48 -0
  4. data/.github/PULL_REQUEST_TEMPLATE.md +41 -0
  5. data/.gitignore +1 -0
  6. data/.rspec +1 -1
  7. data/.rubocop.yml +20 -179
  8. data/.rubocop_todo.yml +262 -0
  9. data/.simplecov +7 -5
  10. data/.travis.yml +54 -46
  11. data/.yardopts +3 -0
  12. data/CHANGELOG.md +613 -246
  13. data/CONTRIBUTING.md +247 -45
  14. data/Dockerfile +67 -0
  15. data/Gemfile +5 -96
  16. data/LICENSE +1 -1
  17. data/README.md +57 -180
  18. data/Rakefile +63 -32
  19. data/appveyor.yml +8 -11
  20. data/aruba.gemspec +47 -41
  21. data/bin/console +7 -0
  22. data/bin/test +9 -0
  23. data/cucumber.yml +4 -24
  24. data/doc/dependency_decisions.yml +42 -2
  25. data/docker-compose.yml +26 -0
  26. data/{bin → exe}/aruba +1 -1
  27. data/fixtures/cli-app/Rakefile +1 -1
  28. data/fixtures/cli-app/bin/aruba-test-cli +6 -0
  29. data/fixtures/cli-app/cli-app.gemspec +1 -2
  30. data/fixtures/cli-app/features/support/aruba.rb +1 -0
  31. data/fixtures/cli-app/features/support/env.rb +1 -1
  32. data/fixtures/cli-app/lib/cli/app/suppress_simple_cov_output.rb +3 -3
  33. data/fixtures/cli-app/lib/cli/app/version.rb +1 -1
  34. data/fixtures/cli-app/lib/cli/app.rb +1 -5
  35. data/fixtures/cli-app/spec/spec_helper.rb +4 -6
  36. data/fixtures/empty-app/Rakefile +1 -1
  37. data/fixtures/empty-app/cli-app.gemspec +1 -2
  38. data/fixtures/empty-app/lib/cli/app/version.rb +1 -1
  39. data/fixtures/empty-app/lib/cli/app.rb +0 -6
  40. data/fixtures/getting-started-app/Gemfile +1 -1
  41. data/lib/aruba/api/commands.rb +109 -143
  42. data/lib/aruba/api/core.rb +57 -43
  43. data/lib/aruba/api/environment.rb +16 -7
  44. data/lib/aruba/api/filesystem.rb +42 -29
  45. data/lib/aruba/api/text.rb +3 -9
  46. data/lib/aruba/api.rb +6 -11
  47. data/lib/aruba/aruba_path.rb +27 -89
  48. data/lib/aruba/basic_configuration.rb +4 -24
  49. data/lib/aruba/cli.rb +1 -1
  50. data/lib/aruba/colorizer.rb +10 -99
  51. data/lib/aruba/command.rb +2 -0
  52. data/lib/aruba/config/jruby.rb +15 -5
  53. data/lib/aruba/config_wrapper.rb +1 -1
  54. data/lib/aruba/configuration.rb +92 -0
  55. data/lib/aruba/console/help.rb +1 -7
  56. data/lib/aruba/console.rb +5 -5
  57. data/lib/aruba/contracts/absolute_path.rb +2 -2
  58. data/lib/aruba/contracts/relative_path.rb +2 -2
  59. data/lib/aruba/cucumber/command.rb +171 -160
  60. data/lib/aruba/cucumber/environment.rb +1 -1
  61. data/lib/aruba/cucumber/file.rb +21 -35
  62. data/lib/aruba/cucumber/hooks.rb +17 -56
  63. data/lib/aruba/cucumber/testing_frameworks.rb +74 -50
  64. data/lib/aruba/cucumber.rb +0 -5
  65. data/lib/aruba/event_bus/name_resolver.rb +5 -16
  66. data/lib/aruba/hooks.rb +1 -1
  67. data/lib/aruba/in_config_wrapper.rb +5 -1
  68. data/lib/aruba/initializer.rb +36 -42
  69. data/lib/aruba/matchers/base/base_matcher.rb +2 -2
  70. data/lib/aruba/matchers/base/message_indenter.rb +19 -0
  71. data/lib/aruba/matchers/base/object_formatter.rb +2 -9
  72. data/lib/aruba/matchers/collection/include_an_object.rb +7 -9
  73. data/lib/aruba/matchers/command/be_successfully_executed.rb +6 -4
  74. data/lib/aruba/matchers/command/have_exit_status.rb +14 -4
  75. data/lib/aruba/matchers/command/have_finished_in_time.rb +3 -5
  76. data/lib/aruba/matchers/command/have_output.rb +10 -5
  77. data/lib/aruba/matchers/command/have_output_on_stderr.rb +2 -2
  78. data/lib/aruba/matchers/command/have_output_on_stdout.rb +2 -2
  79. data/lib/aruba/matchers/command/have_output_size.rb +2 -2
  80. data/lib/aruba/matchers/directory/be_an_existing_directory.rb +5 -7
  81. data/lib/aruba/matchers/directory/have_sub_directory.rb +4 -6
  82. data/lib/aruba/matchers/file/be_a_command_found_in_path.rb +2 -4
  83. data/lib/aruba/matchers/file/be_an_existing_executable.rb +4 -6
  84. data/lib/aruba/matchers/file/be_an_existing_file.rb +5 -7
  85. data/lib/aruba/matchers/file/have_file_content.rb +4 -4
  86. data/lib/aruba/matchers/file/have_file_size.rb +6 -8
  87. data/lib/aruba/matchers/file/have_same_file_content.rb +5 -8
  88. data/lib/aruba/matchers/path/a_path_matching_pattern.rb +2 -4
  89. data/lib/aruba/matchers/path/be_an_absolute_path.rb +3 -5
  90. data/lib/aruba/matchers/path/be_an_existing_path.rb +4 -6
  91. data/lib/aruba/matchers/path/have_permissions.rb +6 -8
  92. data/lib/aruba/matchers/string/include_output_string.rb +8 -10
  93. data/lib/aruba/matchers/string/match_output_string.rb +9 -11
  94. data/lib/aruba/matchers/string/output_string_eq.rb +7 -9
  95. data/lib/aruba/platform.rb +0 -8
  96. data/lib/aruba/platforms/announcer.rb +42 -79
  97. data/lib/aruba/platforms/aruba_file_creator.rb +2 -6
  98. data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +2 -2
  99. data/lib/aruba/platforms/aruba_logger.rb +23 -7
  100. data/lib/aruba/platforms/command_monitor.rb +12 -107
  101. data/lib/aruba/platforms/determine_disk_usage.rb +56 -14
  102. data/lib/aruba/platforms/filesystem_status.rb +10 -14
  103. data/lib/aruba/platforms/local_environment.rb +2 -2
  104. data/lib/aruba/platforms/simple_table.rb +3 -11
  105. data/lib/aruba/platforms/unix_command_string.rb +7 -11
  106. data/lib/aruba/platforms/unix_environment_variables.rb +18 -27
  107. data/lib/aruba/platforms/unix_platform.rb +20 -51
  108. data/lib/aruba/platforms/unix_which.rb +2 -1
  109. data/lib/aruba/platforms/windows_command_string.rb +15 -10
  110. data/lib/aruba/platforms/windows_environment_variables.rb +43 -44
  111. data/lib/aruba/platforms/windows_platform.rb +4 -0
  112. data/lib/aruba/platforms/windows_which.rb +4 -3
  113. data/lib/aruba/processes/basic_process.rb +28 -30
  114. data/lib/aruba/processes/debug_process.rb +12 -3
  115. data/lib/aruba/processes/in_process.rb +17 -8
  116. data/lib/aruba/processes/spawn_process.rb +57 -46
  117. data/lib/aruba/rspec.rb +14 -36
  118. data/lib/aruba/runtime.rb +3 -6
  119. data/lib/aruba/setup.rb +6 -6
  120. data/lib/aruba/tasks/docker_helpers.rb +154 -0
  121. data/lib/aruba/version.rb +1 -1
  122. metadata +191 -244
  123. data/features/.nav +0 -72
  124. data/features/api/command/find_command.feature +0 -83
  125. data/features/api/command/last_command_started.feature +0 -50
  126. data/features/api/command/last_command_stopped.feature +0 -89
  127. data/features/api/command/run.feature +0 -414
  128. data/features/api/command/run_simple.feature +0 -242
  129. data/features/api/command/send_signal.feature +0 -53
  130. data/features/api/command/stderr.feature +0 -46
  131. data/features/api/command/stdout.feature +0 -46
  132. data/features/api/command/stop.feature +0 -131
  133. data/features/api/command/stop_all_commands.feature +0 -53
  134. data/features/api/command/terminate_all_commands.feature +0 -53
  135. data/features/api/command/which.feature +0 -37
  136. data/features/api/core/expand_path.feature +0 -88
  137. data/features/api/environment/append_environment_variable.feature +0 -128
  138. data/features/api/environment/delete_environment_variable.feature +0 -63
  139. data/features/api/environment/prepend_environment_variable.feature +0 -128
  140. data/features/api/environment/set_environment_variable.feature +0 -376
  141. data/features/api/filesystem/cd.feature +0 -184
  142. data/features/api/filesystem/create_directory.feature +0 -57
  143. data/features/api/filesystem/disk_usage.feature +0 -152
  144. data/features/api/filesystem/does_exist.feature +0 -62
  145. data/features/api/filesystem/fixtures.feature +0 -104
  146. data/features/api/filesystem/is_absolute.feature +0 -48
  147. data/features/api/filesystem/is_directory.feature +0 -53
  148. data/features/api/filesystem/is_file.feature +0 -54
  149. data/features/api/filesystem/is_relative.feature +0 -48
  150. data/features/api/filesystem/move.feature +0 -119
  151. data/features/api/text/extract_text.feature +0 -87
  152. data/features/api/text/replace_variables.feature +0 -45
  153. data/features/api/text/sanitize_text.feature +0 -228
  154. data/features/api/text/unescape_text.feature +0 -127
  155. data/features/cli/console.feature +0 -52
  156. data/features/cli/init.feature +0 -79
  157. data/features/configuration/activate_announcer_on_command_failure.feature +0 -38
  158. data/features/configuration/command_runtime_environment.feature +0 -129
  159. data/features/configuration/console_history_file.feature +0 -38
  160. data/features/configuration/exit_timeout.feature +0 -52
  161. data/features/configuration/fixtures_directories.feature +0 -38
  162. data/features/configuration/fixtures_path_prefix.feature +0 -23
  163. data/features/configuration/home_directory.feature +0 -80
  164. data/features/configuration/io_timeout.feature +0 -30
  165. data/features/configuration/keep_ansi.feature +0 -30
  166. data/features/configuration/log_level.feature +0 -38
  167. data/features/configuration/physical_block_size.feature +0 -53
  168. data/features/configuration/remove_ansi_escape_sequences.feature +0 -38
  169. data/features/configuration/root_directory.feature +0 -30
  170. data/features/configuration/startup_wait_time.feature +0 -48
  171. data/features/configuration/usage.feature +0 -159
  172. data/features/configuration/working_directory.feature +0 -33
  173. data/features/development/build.feature +0 -15
  174. data/features/getting_started/cleanup.feature +0 -58
  175. data/features/getting_started/run_commands.feature +0 -187
  176. data/features/getting_started/supported_testing_frameworks.feature +0 -104
  177. data/features/getting_started/writing_good_feature_tests.feature +0 -38
  178. data/features/hooks/after/command.feature +0 -46
  179. data/features/hooks/before/command.feature +0 -75
  180. data/features/matchers/collection/include_an_object.feature +0 -72
  181. data/features/matchers/directory/have_sub_directory.feature +0 -110
  182. data/features/matchers/file/be_a_command_found_in_path.feature +0 -115
  183. data/features/matchers/file/be_existing_executable.feature +0 -88
  184. data/features/matchers/file/be_existing_file.feature +0 -82
  185. data/features/matchers/file/have_file_content.feature +0 -123
  186. data/features/matchers/file/have_file_size.feature +0 -107
  187. data/features/matchers/path/be_an_absolute_path.feature +0 -74
  188. data/features/matchers/path/be_an_existing_path.feature +0 -97
  189. data/features/matchers/path/have_permissions.feature +0 -118
  190. data/features/matchers/timeouts.feature +0 -48
  191. data/features/platforms/jruby.feature +0 -14
  192. data/features/rspec/integration.feature +0 -179
  193. data/features/step_definitions/aruba_dev_steps.rb +0 -56
  194. data/features/step_definitions/hooks.rb +0 -156
  195. data/features/steps/command/debug.feature +0 -92
  196. data/features/steps/command/exit_statuses.feature +0 -136
  197. data/features/steps/command/in_process.feature +0 -485
  198. data/features/steps/command/interactive.feature +0 -90
  199. data/features/steps/command/output.feature +0 -567
  200. data/features/steps/command/run.feature +0 -66
  201. data/features/steps/command/send_signal.feature +0 -104
  202. data/features/steps/command/shell.feature +0 -155
  203. data/features/steps/command/stderr.feature +0 -68
  204. data/features/steps/command/stdout.feature +0 -109
  205. data/features/steps/command/stop.feature +0 -313
  206. data/features/steps/core/announce.feature +0 -283
  207. data/features/steps/environment/append_environment_variable.feature +0 -52
  208. data/features/steps/environment/disable_bunder.feature +0 -18
  209. data/features/steps/environment/home_variable.feature +0 -62
  210. data/features/steps/environment/prepend_environment_variable.feature +0 -52
  211. data/features/steps/environment/set_environment_variable.feature +0 -49
  212. data/features/steps/filesystem/append_to_file.feature +0 -45
  213. data/features/steps/filesystem/cd_to_directory.feature +0 -33
  214. data/features/steps/filesystem/check_file_content.feature +0 -61
  215. data/features/steps/filesystem/check_permissions_of_file.feature +0 -39
  216. data/features/steps/filesystem/compare_files.feature +0 -42
  217. data/features/steps/filesystem/copy.feature +0 -45
  218. data/features/steps/filesystem/create_directory.feature +0 -57
  219. data/features/steps/filesystem/create_file.feature +0 -76
  220. data/features/steps/filesystem/existence_of_directory.feature +0 -57
  221. data/features/steps/filesystem/existence_of_file.feature +0 -43
  222. data/features/steps/filesystem/file_content.feature +0 -86
  223. data/features/steps/filesystem/fixtures.feature +0 -64
  224. data/features/steps/filesystem/move.feature +0 -45
  225. data/features/steps/filesystem/non_existence_of_directory.feature +0 -69
  226. data/features/steps/filesystem/non_existence_of_file.feature +0 -80
  227. data/features/steps/filesystem/overwrite_file.feature +0 -72
  228. data/features/steps/filesystem/remove_directory.feature +0 -38
  229. data/features/steps/filesystem/remove_file.feature +0 -38
  230. data/features/steps/filesystem/use_fixture.feature +0 -77
  231. data/features/steps/overview.feature +0 -25
  232. data/features/support/aruba.rb +0 -7
  233. data/features/support/env.rb +0 -33
  234. data/features/support/jruby.rb +0 -5
  235. data/features/support/simplecov_setup.rb +0 -8
  236. data/fixtures/cli-app/bin/cli +0 -6
  237. data/fixtures/spawn_process/stderr.sh +0 -3
  238. data/lib/aruba/api/deprecated.rb +0 -1234
  239. data/lib/aruba/config.rb +0 -107
  240. data/lib/aruba/cucumber/core.rb +0 -5
  241. data/lib/aruba/cucumber/rvm.rb +0 -3
  242. data/lib/aruba/in_process.rb +0 -14
  243. data/lib/aruba/jruby.rb +0 -4
  244. data/lib/aruba/matchers/deprecated/file.rb +0 -17
  245. data/lib/aruba/matchers/deprecated.rb +0 -1
  246. data/lib/aruba/matchers/path/match_path_pattern.rb +0 -41
  247. data/lib/aruba/matchers/rspec_matcher_include_regexp.rb +0 -25
  248. data/lib/aruba/platforms/disk_usage_calculator.rb +0 -20
  249. data/lib/aruba/reporting.rb +0 -126
  250. data/lib/aruba/spawn_process.rb +0 -11
  251. data/script/bootstrap +0 -28
  252. data/script/console +0 -16
  253. data/script/test +0 -3
  254. data/spec/aruba/api/bundler_spec.rb +0 -15
  255. data/spec/aruba/api/deprecated_spec.rb +0 -308
  256. data/spec/aruba/api/environment/restore_env_spec.rb +0 -86
  257. data/spec/aruba/api/environment/set_env_spec.rb +0 -46
  258. data/spec/aruba/api/filesystem/file_size_spec.rb +0 -28
  259. data/spec/aruba/api/runtime_spec.rb +0 -28
  260. data/spec/aruba/api_spec.rb +0 -981
  261. data/spec/aruba/aruba_path_spec.rb +0 -103
  262. data/spec/aruba/basic_configuration_spec.rb +0 -5
  263. data/spec/aruba/configuration_spec.rb +0 -5
  264. data/spec/aruba/hooks_spec.rb +0 -17
  265. data/spec/aruba/in_config_wrapper_spec.rb +0 -25
  266. data/spec/aruba/jruby_spec.rb +0 -55
  267. data/spec/aruba/matchers/command/have_output_size_spec.rb +0 -25
  268. data/spec/aruba/matchers/command_spec.rb +0 -174
  269. data/spec/aruba/matchers/deprecated_spec.rb +0 -120
  270. data/spec/aruba/matchers/directory_spec.rb +0 -57
  271. data/spec/aruba/matchers/file_spec.rb +0 -208
  272. data/spec/aruba/matchers/path_spec.rb +0 -58
  273. data/spec/aruba/platform/simple_table_spec.rb +0 -23
  274. data/spec/aruba/platform/windows_environment_variables_spec.rb +0 -500
  275. data/spec/aruba/platforms/unix_command_string_spec.rb +0 -17
  276. data/spec/aruba/platforms/windows_command_string_spec.rb +0 -22
  277. data/spec/aruba/rspec_spec.rb +0 -15
  278. data/spec/aruba/runtime_spec.rb +0 -29
  279. data/spec/aruba/spawn_process_spec.rb +0 -96
  280. data/spec/event_bus/name_resolver_spec.rb +0 -68
  281. data/spec/event_bus_spec.rb +0 -158
  282. data/spec/spec_helper.rb +0 -20
  283. data/spec/support/configs/.keep +0 -0
  284. data/spec/support/configs/aruba.rb +0 -5
  285. data/spec/support/configs/pry.rb +0 -3
  286. data/spec/support/configs/rspec.rb +0 -15
  287. data/spec/support/helpers/.keep +0 -0
  288. data/spec/support/helpers/reporting.rb +0 -44
  289. data/spec/support/matchers/.keep +0 -0
  290. data/spec/support/matchers/option.rb +0 -35
  291. data/spec/support/shared_contexts/.keep +0 -0
  292. data/spec/support/shared_contexts/aruba.rb +0 -49
  293. data/spec/support/shared_examples/.keep +0 -0
  294. data/spec/support/shared_examples/configuration.rb +0 -116
  295. data/spec/support/shared_examples/directory.rb +0 -7
  296. data/spec/support/shared_examples/file.rb +0 -7
  297. data/templates/css/console.css +0 -24
  298. data/templates/css/filesystem.css +0 -42
  299. data/templates/css/pygments-autumn.css +0 -59
  300. data/templates/files.erb +0 -14
  301. data/templates/images/LICENSE +0 -22
  302. data/templates/images/folder.png +0 -0
  303. data/templates/images/page_white.png +0 -0
  304. data/templates/images/page_white_gherkin.png +0 -0
  305. data/templates/images/page_white_ruby.png +0 -0
  306. data/templates/index.erb +0 -20
  307. data/templates/js/filesystem.js +0 -5
  308. data/templates/js/jquery-1.11.3.min.js +0 -5
  309. data/templates/main.erb +0 -34
data/CHANGELOG.md CHANGED
@@ -2,17 +2,276 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- This project will adhere to [Semantic Versioning][1] once version 1.0.0 is released.
5
+ This project adheres to [Semantic Versioning][1].
6
6
 
7
7
  This document is formatted according to the principles of [Keep A CHANGELOG][2].
8
8
 
9
- ## [v0.14.9]
9
+ ## [1.0.0]
10
+
11
+ ### Breaking changes compared to Aruba 0.14.x
12
+
13
+ * Support for Ruby 2.3 and lower has been dropped
14
+ * Deprecated functionality has been removed
15
+ * The home directory is set to aruba's working directory by default
16
+
17
+ ### Detailed changes compared to 1.0.0.pre.alpha.5
18
+
19
+ * Update simplecov ([#704] by [mvz])
20
+ * Several cuke improvements ([#703] by [mvz])
21
+ * Find relative commands from the current Aruba directory ([#702] by [mvz])
22
+ * Update development dependencies ([#701] by [mvz])
23
+ * Clean up linting and fix environment nesting ([#698] by [mvz])
24
+ * Update build configuration ([#696] by [mvz])
25
+ * Fix cd behavior with absolute paths and home directory ([#692] by [mvz])
26
+ * Improve `expand_path` warnings ([#687] by [deivid-rodriguez])
27
+ * Remove unneeded appveyor step ([#690] by [deivid-rodriguez])
28
+ * Fix travis.yml lint task ([#689] by [deivid-rodriguez])
29
+ * Fix cucumber deprecations ([#688] by [deivid-rodriguez])
30
+ * Update gemspec: Metadata and RDoc options ([#686] by [mvz])
31
+ * Update dependencies and fix RuboCop offenses ([#683] by [mvz])
32
+ * Init: Conditionally prefix the `gem aruba` line with a carriage return ([#570] by [xtrasimplicity])
33
+ * Update supported set of rubies([#679] by [mvz])
34
+
35
+ ## [1.0.0.pre.alpha.5]
36
+
37
+ * Improve command failure message ([#675] by [deivid-rodriguez])
38
+ * Bump childprocess dependency ([#674] by [mvz])
39
+ * Suppress keyword argument warnings in Ruby 2.7 ([#672] by [koic])
40
+ * Refactor: Uncouple some of aruba's step definition code ([#666] by [luke-hill])
41
+ * Fix several JRuby build issues
42
+ ([bb770e2e](https://github.com/cucumber/aruba/commit/bb770e2e82ec09807b07eed1f4a124612eeee3f4),
43
+ [#669] and [#671] by [mvz])
44
+ * Clean up build ([#663] by [mvz])
45
+ * Handle announcing combined with DebugProcess ([#665] by [mvz])
46
+ * Allow both 'a' and 'the' in step, as documented ([#660] by [mvz])
47
+ * Fix rubocop issues ([#654] and [#659] by [luke-hill])
48
+ * Fix up JRuby build ([#657] by [mvz])
49
+ * Improve documentation for the `@debug` annotation ([#656] by [mvz])
50
+ * Support windows internal commands ([#655] by [xtrasimplicity])
51
+ * Do not set binmode on output temp files ([#652] by [mvz])
52
+ * Fix JRuby builds ([#637] by [mvz])
53
+ * Restore previously removed behaviors ([#644] by [mvz])
54
+ * Improve cucumber features ([#643] by [mvz])
55
+ * Move development dependency information to gemspec ([#631] by [luke-hill])
56
+ * Fix JRuby before :command helper hook ([#635] by [mvz])
57
+ * Replace problematic AnsiColor module with simple implementation ([#636] by [mvz])
58
+ * Drop Ruby 2.2 support ([#616] by [mvz] and [luke-hill])
59
+
60
+ ## [1.0.0.pre.alpha.4]
61
+
62
+ * Improve documentation: GitHub is not Github ([#629] by [amatsuda])
63
+ * TimeoutError is deprecated in favor of Timeout::Error ([#628] by [amatsuda])
64
+ * Allow use with Cucumber 3.x ([#626] by [mvz])
65
+
66
+ ## [1.0.0.pre.alpha.3]
67
+
68
+ ### Added
69
+
70
+ * Allow `#expand_path` to be used with absolute paths. This will emit a warning,
71
+ which can be silenced with a configuration option ([#540] by [mvz])
72
+ * Allow decimal seconds in Cucumber steps that set Aruba timeout values
73
+ ([#544] by [mvz])
74
+ * Make `have_file_content` diffable ([#562] by [cllns])
75
+ * Restore `@disable-bundler` hook ([#560] by [mvz])
76
+
77
+ ### Changed
78
+
79
+ * Improve documentation for users and developers ([#454], [#456], [#457], [#460],
80
+ [#459], [#461], [#475], [#494] by [olleolleolle], [maxmeyer], [mvz])
81
+ * Make forgetting `setup_aruba` a hard failure ([#510] by [mvz])
82
+ * Update dependencies ([#511], [#541], [#553] by [mvz], [#528] by [maxmeyer], [#615] by [luke-hill] and [mvz])
83
+ * Improve output of `#have_output` matcher ([#546] by [mvz])
84
+ * Removed `have_same_file_content_like` and `a_file_with_same_content_like`
85
+ matchers, in favour of `have_same_file_content_as` and
86
+ `a_file_with_same_content_as` ([#555] by [xtrasimplicity])
87
+
88
+ ### Removed
89
+
90
+ * Remove deprecated functionality ([#483], [#488], [#508] by [mvz])
91
+ * Remove broken RVM-related step definition ([#587] by [mvz])
92
+ * Drop support for Rubies below 2.2 ([#613] by [luke-hill])
93
+
94
+ ### Bug fixes
95
+
96
+ * Fix UTF-8 issues with jRuby ([#462] by [stamhankar999])
97
+ * Allow slashes in file matching regex ([#512] by [scottj97] with [richardxia])
98
+ * Avoid duplicate output appearing in certain cases ([#517] by [maxmeyer] and [mvz])
99
+ * Fix `@no-clobber` breaking process management ([#535] by [doudou])
100
+ * Fix command spawning when spaces occur in the path ([#520] by [mvz])
101
+ * Make exit in in-process runner behave like real Kernel#exit ([#594] by [grosser])
102
+ * Improve compatibility with Windows ([#618] by [mvz])
103
+ - Upcase ENV keys on Windows
104
+ - Properly escape command and arguments on Windows
105
+ - Use correct path separator on Windows
106
+
107
+ ### Developer experience and internal changes
108
+
109
+ * Fix test suite failures ([#452], [#497] by [maxmeyer] and [mvz]; [#487], [#509] by [mvz])
110
+ * Remove development gems for unsupported Rubinius platform ([#464] by [maxmeyer])
111
+ * Update `license_finder` dependency ([#466] by [maxmeyer])
112
+ * Restrict branches to run Travis ([#471] by [junaruga])
113
+ * Maintain Travis builds ([#476] by [maxmeyer]; [#493] [#532], [#536] by [mvz]; [#542], [#596], [#607] by [olleolleolle])
114
+ * Rename History.md to CHANGELOG.md and fix links and formatting, etc. to bring
115
+ it in line with [cucumber/cucumber#521] ([#481], [#482] by [jaysonesmith])
116
+ * Fix YARD documentation issues ([#491] [olleolleolle])
117
+ * Change maintainership ([#495], [#523] by [maxmeyer])
118
+ * Remove commented-out code ([#498] by [olleolleolle])
119
+ * Documentation fixups ([#504] by [roschaefer]; [#530] by [xtrasimplicity]; [#606] by [olleolleolle])
120
+ * Add 'stale' bot ([#507] by [maxmeyer]
121
+ * Update RuboCop and fix some offenses ([#514], [#537] by [mvz])
122
+ * Mark scenarios requiring external commands ([#515] [mvz])
123
+ * Remove cucumber features related to Aruba development ([#522], [#543], [#544] [mvz])
124
+ * Avoid long waits in feature suite ([#544] [mvz])
125
+ * Clean up internally used cuke tags and their implementation ([#548] by [mvz])
126
+ * Test with Ruby 2.5 and 2.6 ([#554] by [nicolasleger], [#578] by [mvz])
127
+ * Fix tests on Debian. ([#575] by [Heinrich])
128
+ * Update development dependencies ([#580] by [mvz])
129
+ * Start work on unifying still and master branches ([#583], [#584] by [mvz])
130
+ * Update CONTRIBUTING.md and drop bin/bootstrap ([#593] by [olleolleolle])
131
+ * Point to https version of GitHub repo URL ([#623] by [amatsuda])
132
+
133
+ ## [1.0.0.pre.alpha.2]
134
+
135
+ * Update examples for usage in README
136
+ * Fix environment manipulation ([#442])
137
+ * Update supported ruby versions in .travis.yml ([#449])
138
+ * Use `license_finder` version which is usable for rubies `< 2.3` ([#451])
139
+ * Wrap test runners in `bundle exec` ([#447])
140
+ * Fix wording in README ([#445])
141
+ * Restructure README and upload feature files to cucumber.pro ([#444])
142
+
143
+ ## [1.0.0.pre.alpha.1]
144
+
145
+ Note: These are changes w.r.t. Aruba version 0.14.1.
146
+
147
+ * Use new proposed structure for gems by bundler ([#439])
148
+ * Rename methods which run commands ([#438])
149
+ * Fix dependency error for install ([#427])
150
+ * Actually fail the build if rake test fails ([#433])
151
+ * Improve frozen-string-literals compatibility. ([#436])
152
+ * Fix running commands on Windows ([#387])
153
+ * Fix running commands on Windows ([#387])
154
+ * Set permissions to values which are supported on Windows ([#398], [#388])
155
+ * Remove Aruba::Reporting ([#389])
156
+ * Rename bin/cli to bin/aruba-test-cli to prevent name conflict ([#390])
157
+ * Drop support for `ruby < 1.9.3` and rubinius ([#385])
158
+ * Fixed wrong number of arguments in `Aruba::Platforms::WindowsEnvironmentVariables#delete`
159
+ ([#349], [#358] by [e2])
160
+ * Fixed colors in `script/bootstrap` ( [#352], [e2])
161
+ * Fixed use of removed `Utils`-module ([#347], [e2])
162
+ * Fixed exception handler in BasicProcess ([#357], [e2])
163
+ * Fixed step to check for existing of files ([#375], [rubbish])
164
+ * Fixed unset instance variable ([#372], [e2])
165
+ * Added vision and hints to project README ([#366])
166
+ * Fixed setting environment variables on Windows ([#358], [e2])
167
+ * Fixed the logic to determine disk usage ([#359], [e2])
168
+ * Prefixed exception in `rescue`-call to make it fail with a proper error
169
+ message ([#376])
170
+ * Run and build aruba in isolated environment via docker ([#353] by [e2], [#382])
171
+ * Run container with docker-compose without making docker-compose a required
172
+ dependency. Rake tasks read in the docker-compose.yml instead ([#382])
173
+ * Document developer rake tasks via cucumber features ([#382])
174
+ * Add more hints to CONTRIBUTING.md ([#382])
175
+ * Add TESTING.md (WIP) ([#382], [e2])
176
+ * Cleanup rake tasks via separate namespaces ([#382])
177
+ * Some more minor fixes ([#382])
178
+ * Don't run feature test if executable required for test is not installed
179
+ (python, bash, zsh, javac, ...) ([#382])
180
+ * Support for rubies older than 1.9.3 is discontinued - e.g 1.8.7 and 1.9.2
181
+ * aruba requires "cucumber 2" for the feature steps. The rest of aruba should
182
+ be usable by whatever testing framework you are using.
183
+ * Overwriting methods for configuration is discontinued. You need to use
184
+ `aruba.config.<variable>` or `Aruba.configure { |config| config.<variable>`
185
+ instead.
186
+ * "aruba/reporting" will be removed. Please use `@debug`-tag + `byebug`,
187
+ `debugger`, `pry` to troubleshoot your feature tests.
188
+ * Set environment variables will have only effect on `#run` and the like +
189
+ `#with_environment { }`.
190
+ * The process environment will be fully resetted between tests. Sharing state
191
+ via ENV['VAR'] = 'shared state' between tests will not be possible anymore.
192
+ Please make that obvious by using explicit steps or use the aruba API for
193
+ that.
194
+ * There will be a major cleanup for command execution. There will be only
195
+ `run` and `run_simple` left. `run_interactive` is replaced by `run`.
196
+ * Setting the root directory of aruba via method overwrite or configuration -
197
+ this should be your project root directory where the test suite is run.
198
+ * The direct use of "InProcess", "DebugProcess" and "SpawnProcess" is not
199
+ supported anymore. You need to use "Command" instead. But be careful, it has
200
+ a different API.
201
+ * HOME can be configured via `Aruba.configure {}` and defaults to
202
+ `File.join(aruba.config.root_directory, aruba.config.working_directory?)`
203
+ if `aruba/cucumber` or `aruba/rspec` is used.
204
+ * Use different working directories based on test suite - RSpec, Cucumber.
205
+ It's `tmp/rspec` and `tmp/cucumber` now to make sure they do not overwrite
206
+ the test results from each other.
207
+ * The use of `@interactive` is discontinued. You need to use
208
+ `#last_command_started`-method to get access to the interactively started
209
+ command.
210
+ * If multiple commands have been started, each output has to be check
211
+ separately
212
+
213
+ Scenario: Detect stdout from all processes
214
+ When I run `printf "hello world!\n"`
215
+ And I run `cat` interactively
216
+ And I type "hola"
217
+ And I type ""
218
+ Then the stdout should contain:
219
+ """
220
+ hello world!
221
+ """
222
+ And the stdout should contain:
223
+ """
224
+ hola
225
+ """
226
+ And the stderr should not contain anything
227
+
228
+ ## [0.14.14]
229
+
230
+ * Support Ruby 2.7 ([#677])
231
+
232
+ ## [0.14.13]
233
+
234
+ * Loosen dependency on thor ([#676])
235
+ * Mark setting of `root_directory` as deprecated in documentation ([#571])
236
+
237
+ ## [0.14.12]
238
+
239
+ * Loosen dependency on childprocess ([#673])
240
+ * Fix Travis build ([#668])
241
+ * Handle announcing with DebugProcess ([#664])
242
+
243
+ ## [0.14.11]
244
+
245
+ * Loosen childprocess dependency ([#658])
246
+ * Do not set binmode on output temp files, so automatic line ending conversion works ([#650])
247
+ * Improve deprecation suggestions ([#647])
248
+ * Backport fixes to code organization, layout and spelling ([#645])
249
+
250
+ ## [0.14.10]
251
+
252
+ * Backport replacement of problematic AnsiColor module with simple
253
+ implementation ([#642])
254
+ * Undo preprecation of `#all_output`, `#all_stdout`, `#all_stderr` and
255
+ `#in_current_directory` API methods, as well as of checking the combined
256
+ output from all commands in cucumber steps ([#638])
257
+ * Warn when deprecated files `aruba/in_process` and `aruba/spawn_process` are
258
+ required ([#639])
259
+ * Backport allowing decimal timeout values ([#621])
260
+ * Move deprecated cucumber steps into a separate file ([#622])
261
+ * Backport renaming of bin/cli in features ([#620])
262
+ * Improve build set for CI ([#611])
263
+ * Make JRuby before :command helper hook work on the environment the command
264
+ will actually be run in ([#610], [#612])
265
+ * Reorganize spec files to match master branch ([#603])
266
+ * Reorganize feature files to match master branch ([#602])
267
+
268
+ ## [0.14.9]
10
269
 
11
270
  * Formally deprecate `#use_clean_gemset` ([#597])
12
271
  * Improve deprecation messages ([#601])
13
272
  * Do not replace entire environment inside `#cd` block ([#604])
14
273
 
15
- ## [v0.14.8]
274
+ ## [0.14.8]
16
275
 
17
276
  * Deprecate `#run` and `#run_simple` in favor of `#run_command` and
18
277
  `#run_command_and_stop` ([#585])
@@ -21,54 +280,54 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
21
280
  * Properly warn about deprecated use of the run methods with one positional
22
281
  option ([#588])
23
282
 
24
- ## [v0.14.7]
283
+ ## [0.14.7]
25
284
 
26
285
  * Fix Cucumber steps to use `have_same_file_content_as` matcher ([#572])
27
286
  * Update dependencies, most notably loosening the dependency on `ffi` ([#581])
28
287
 
29
- ## [v0.14.6]
288
+ ## [0.14.6]
30
289
 
31
290
  * Document and fix `@disable-bundler` hook ([#561])
32
291
  * Deprecate `have_same_file_content_like` and `a_file_with_same_content_like`
33
292
  in favor of `have_same_file_content_as` and `a_file_with_same_content_as` ([#557])
34
293
 
35
- ## [v0.14.5]
294
+ ## [0.14.5]
36
295
 
37
296
  * Loosen dependency on child_process ([#551])
38
297
 
39
- ## [v0.14.4]
298
+ ## [0.14.4]
40
299
 
41
300
  * Fix command spawning when run in directories with spaces ([#490])
42
301
  * Ensure setup is still done when using `@no-clobber` ([#529])
43
302
  * Make `#expand_path` handle absolute paths correctly ([#486])
44
303
 
45
- ## [v0.14.3]
304
+ ## [0.14.3]
46
305
 
47
306
  * Fix path bug ([#422])
48
307
  * Ensure non-deprecated methods do not use deprecated methods ([#489])
49
308
  * Update dependency on childprocess ([#516])
50
309
  * Fix encoding output on JRuby ([#516])
51
310
 
52
- ## [v0.14.2]
311
+ ## [0.14.2]
53
312
 
54
- * Handle empty JRUBY_OPTS on JRuby
313
+ * Handle empty `JRUBY_OPTS` on JRuby
55
314
 
56
- ## [v0.14.1]
315
+ ## [0.14.1]
57
316
 
58
317
  * Fixed bug in framework step
59
318
 
60
- ## [v0.14.0]
319
+ ## [0.14.0]
61
320
 
62
321
  * Add `<project_root>/exe` to search path for commands: This is the new default
63
322
  if you setup a project with bundler.
64
323
  * Add some more steps to modify environment
65
324
 
66
- ## [v0.13.0]
325
+ ## [0.13.0]
67
326
 
68
327
  * Add two new hooks for rspec and cucumber to make troubleshooting feature
69
328
  files easier ([#338]):
70
- * command_content: Outputs command content - helpful for scripts
71
- * command_filesystem_status: Outputs information like group, owner, mode,
329
+ * `command_content`: Outputs command content - helpful for scripts
330
+ * `command_filesystem_status`: Outputs information like group, owner, mode,
72
331
  atime, mtime
73
332
  * Add generator to create ad hoc script file ([#323], [AdrieanKhisbe])
74
333
  * Colored announcer output similar to the color of `cucumber` tags: cyan
@@ -77,40 +336,40 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
77
336
  * Refactorings to internal `#simple_table`-method (internal)
78
337
  * Refactored Announcer, now it supports blocks for announce as well (internal)
79
338
  * Fix circular require warnings ([#339])
80
- * Fix use of old instances variable "@io_wait" ([#341]). Now the
81
- default value for io_wait_timeout can be set correctly.
339
+ * Fix use of old instances variable `@io_wait` ([#341]). Now the
340
+ default value for `io_wait_timeout` can be set correctly.
82
341
  * Make it possible to announce information on command error, using a new option
83
342
  called `activate_announcer_on_command_failure` ([#335], [njam])
84
343
  * Re-integrate `event-bus`-library into `aruba`-core ([#342])
85
344
 
86
- ## [v0.12.0]
345
+ ## [0.12.0]
87
346
 
88
347
  * Add matcher to check if a command can be found in PATH ([#336])
89
348
  * Fixed issue with environment variables set by external libraries ([#321], [#320])
90
349
 
91
- ## [v0.11.2]
350
+ ## [0.11.2]
92
351
 
93
352
  * Fixed problem with positional arguments in `#run_simple()` ([#322])
94
353
 
95
- ## [v0.11.1]
354
+ ## [0.11.1]
96
355
 
97
356
  * Use fixed version of event-bus
98
357
  * Refactored and improved documentation (feature tests) in [#309]
99
358
 
100
- ## [v0.11.0]
359
+ ## [0.11.0]
101
360
 
102
361
  * Accidently pushed to rubygems.org - yanked it afterwards
103
362
 
104
- ## [v0.11.0.pre4]
363
+ ## [0.11.0.pre4]
105
364
 
106
365
  * Fixed syntax for Hash on ruby 1.8.7
107
366
  * Reorder rubies in .travis.yml
108
367
 
109
- ## [v0.11.0.pre3]
368
+ ## [0.11.0.pre3]
110
369
 
111
370
  * Fixed syntax for proc on ruby 1.8.7
112
371
 
113
- ## [v0.11.0.pre2]
372
+ ## [0.11.0.pre2]
114
373
 
115
374
  * Integrate `EventBus` to decouple announcers from starting, stopping commands
116
375
  etc. This uses nearly the same implementation like `cucumber`. ([#309])
@@ -129,14 +388,14 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
129
388
  * Added `be_an_executable` matcher
130
389
 
131
390
 
132
- ## [v0.11.0.pre]
391
+ ## [0.11.0.pre]
133
392
 
134
393
  * Set stop signal which should be used to stop a process after a timeout or
135
394
  used to terminate a process. This can be used to stop processes running
136
395
  docker + "systemd". If you send a systemd-enable container SIGINT it will be
137
396
  stopped.
138
397
  * Added a configurable amount of time after a command was started -
139
- startup_wait_time. Otherwise you get problems when a process takes to long to
398
+ `startup_wait_time`. Otherwise you get problems when a process takes to long to
140
399
  startup when you run in background and want to sent it a signal.
141
400
  * Replace `<variable>` in commandline, e.g. `<pid-last-command-started>`
142
401
  [experimental]
@@ -146,50 +405,51 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
146
405
  * `rvm`-methods are deprecated. They are too ruby specific.
147
406
 
148
407
 
149
- ## [v0.10.2]
408
+ ## [0.10.2]
150
409
 
151
410
  * Fixed problem in regex after merge of step definitions
152
411
 
153
412
 
154
- ## [v0.10.1]
413
+ ## [0.10.1]
155
414
 
156
415
  * Merged remove steps for file and directory from 4 into 2 step definitions
157
416
 
158
417
 
159
- ## [v0.10.0]
418
+ ## [0.10.0]
160
419
 
161
- * Fix '"#exit_timeout" is deprecated' error ([#314])
420
+ * Fix `"#exit_timeout" is deprecated` error ([#314])
162
421
 
163
- ## [v0.10.0.pre2]
422
+ ## [0.10.0.pre2]
164
423
 
165
424
  * Take over code from `RSpec::Support::ObjectFormatter` since `rspec-support`
166
425
  is not intended for public use.
167
426
 
168
- ## [v0.10.0.pre]
427
+ ## [0.10.0.pre]
169
428
 
170
429
  * Add some new steps to make writing documentation easier using "cucumber",
171
430
  "rspec", "minitest" together with "aruba" - see [Feature](features/getting_started/supported_testing_frameworks.feature)
172
431
  for some examples
173
- * Write output of commands directly to disk if SpawnProcess is used (see https://github.com/cucumber/aruba/commit/85d74fcca4fff4e753776925d8b003cddaa8041d)
432
+ * Write output of commands directly to disk if SpawnProcess is used
433
+ (see [85d74fcc](https://github.com/cucumber/aruba/commit/85d74fcca4fff4e753776925d8b003cddaa8041d))
174
434
  * Refactored API of cucumber steps to reduce the need for more methods and make
175
435
  it easier for users to write their own steps ([#306])
176
436
  * Added `aruba init` to the cli command to setup environment for aruba (issue
177
437
  [#308])
178
438
  * Added new method `delete_environment_variable` to remove environment variable
179
439
  * Added work around because of method name conflict between Capybara and RSpec
180
- (https://github.com/cucumber/aruba/commit/1939c4049d5195ffdd967485f50119bdd86e98a0)
440
+ ([1939c404](https://github.com/cucumber/aruba/commit/1939c4049d5195ffdd967485f50119bdd86e98a0))
181
441
 
182
442
 
183
- ## [v0.9.0]
443
+ ## [0.9.0]
184
444
 
185
445
  * Fix feature test
186
446
  * Fix ordering in console
187
447
  * Fix bug in console handling SIGINT
188
448
  * Deprecated Aruba/Reporting before we remove it
189
449
 
190
- ## [v0.9.0.pre2]
450
+ ## [0.9.0.pre2]
191
451
 
192
- * Redefine #to_s and #inspect for BasicProcess to reduce the sheer amount of
452
+ * Redefine `#to_s` and `#inspect` for BasicProcess to reduce the sheer amount of
193
453
  information, if a command produces a lot of output
194
454
  * Added new matcher `#all_objects` to check if an object is included + an error
195
455
  message for failures which is similar to the `#all`-matcher of `RSpec`
@@ -208,38 +468,38 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
208
468
  kill all sub-processes more reliably
209
469
 
210
470
 
211
- ## [v0.9.0.pre]
471
+ ## [0.9.0.pre]
212
472
 
213
473
  * Improve documentation for filesystem api and move it to feature tests
214
474
  * Add logger to aruba. Its output can be captured by rspec.
215
- * Fix incorrect deprecation message for check_file_presence ([#292])
475
+ * Fix incorrect deprecation message for `check_file_presence` ([#292])
216
476
  * Fix for Gemfile excludes windows for many gems ([#282])
217
477
  * Make feature tests compatible with ruby 1.9.2
218
478
  * Gather disk usage for file(s) ([#294])
219
- * Replace keep_ansi-config option by remove_ansi_escape_sequences-option
479
+ * Replace `keep_ansi` config option by `remove_ansi_escape_sequences` option
220
480
  * Split up `#unescape` into `#extract_text` and `#unescape_text`
221
481
  * Use `UnixPlatform` and `WindowsPlatform` to make code for different platforms
222
482
  maintainable
223
- * Work around `ENV`-bug in `Jruby` buy using `#dup` on `ENV.to_h` ([jruby/jruby#316])
224
- * Speed up test on `JRuby` by using `--dev`-flag
483
+ * Work around `ENV`-bug in JRuby by using `#dup` on `ENV.to_h` ([jruby/jruby#316])
484
+ * Speed up test on JRuby by using `--dev`-flag
225
485
  * Work around problems when copying files with `cp` on MRI-ruby 1.9.2
226
- * Add cmd.exe /c for SpawnProcess on Windows ([#302])
486
+ * Add `cmd.exe /c` for SpawnProcess on Windows ([#302])
227
487
  * Split up `#which` for Windows and Unix/Linux ([#304])
228
- * Add `aruba console`-command to play around with aruba ([#305])
488
+ * Add `aruba console` command to play around with aruba ([#305])
229
489
 
230
490
 
231
- ## [v0.8.1]
491
+ ## [0.8.1]
232
492
 
233
493
  * Fix problem if working directory of aruba does not exist ([#286])
234
- * Re-Add removed method only_processes
494
+ * Re-add removed method `only_processes`
235
495
  * Fixed problem with last exit status
236
496
  * Added appveyor to run tests of aruba on Windows ([#287])
237
497
  * Make the home directory configurable and use Around/around-hook to apply it
238
498
  * Add announcer to output the full environment before a command is run
239
- * Use prepend_environment_variable to modify PATH for rspec integration
240
- * Add VERSION-constant to aruba and use it for code which should be activated on >= 1.0.0
499
+ * Use `prepend_environment_variable` to modify PATH for rspec integration
500
+ * Add `VERSION` constant to aruba and use it for code which should be activated on >= 1.0.0
241
501
 
242
- ## [v0.8.0]
502
+ ## [0.8.0]
243
503
 
244
504
  * Build with cucumber 1.3.x on ruby 1.8.7, with cucumber 2.x on all other platforms
245
505
  * Fixed bugs in aruba's cucumber steps
@@ -249,7 +509,7 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
249
509
  * Fixed selectors for DebugProcess and InProcess to support sub-classes as well
250
510
 
251
511
 
252
- ## [v0.8.0.pre3]
512
+ ## [0.8.0.pre3]
253
513
 
254
514
  * Depend on cucumber 1.3.x for compatibility on ruby 1.8.7
255
515
  * Change PWD and OLDPW when `cd('path') {}` is used within that block
@@ -267,11 +527,11 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
267
527
  * Now each `path/to/dir` pushed to `aruba.current_directory` is `pop`ed as whole
268
528
  * Make testing of `aruba.current_directory` easier by supporting `end_with?` and `start_with?`
269
529
 
270
- ## [v0.8.0.pre2]
530
+ ## [0.8.0.pre2]
271
531
 
272
532
  * Relax requirement on rspec-expectations (3.3 -> 2.11)
273
533
 
274
- ## [v0.8.0.pre]
534
+ ## [0.8.0.pre]
275
535
 
276
536
  * Make aruba compatible with "ruby 1.8.7" and "ruby 1.9.3" again ([#279])
277
537
  * Move more and more documentation to cucumber steps ([#268])
@@ -279,38 +539,39 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
279
539
  * Move Aruba constants to configuration class ([#271])
280
540
  * Added runtime configuration via `aruba.config` which is reset for each test run
281
541
  * Refactored hooks: now there are `after()` and `before()`-hooks, old
282
- before_cmd-hook is still working, but is deprecated, added new
542
+ `before_cmd`-hook is still working, but is deprecated, added new
283
543
  `after(:command)`-hook.
284
544
  * Refactored jruby-startup helper
285
545
  * Cleanup API by moving deprecated methods to separate class
286
- * Cleanup Core API - reduced to `cd`, `expand_path`, `setup_aruba` and use expand_path wherever possible ([#253])
546
+ * Cleanup Core API - reduced to `cd`, `expand_path`, `setup_aruba` and use
547
+ `expand_path` wherever possible ([#253])
287
548
  * Better isolation for environment variable manipulation - really helpful from 1.0.0 on
288
549
  * Move configuration files like `jruby.rb` to `aruba/config/`-directory
289
550
  * Change default exit timeout to 15 seconds to work around long running processes on travis
290
- * Use of instance variables like @aruba_timeout_seconds or
291
- @aruba_io_wait_seconds are deprecated. Use `Aruba.configure do |config|
292
- config.exit_timeout = 10` etc. for this.
551
+ * Use of instance variables like `@aruba_timeout_seconds` or
552
+ `@aruba_io_wait_seconds` are deprecated.
553
+ Use `Aruba.configure do |config| config.exit_timeout = 10` etc. for this.
293
554
 
294
- ## [v0.7.4]
555
+ ## [0.7.4]
295
556
  * Really Fixed post install message
296
557
 
297
- ## [v0.7.3]
558
+ ## [0.7.3]
298
559
  * Fixed post install message
299
560
 
300
- ## [v0.7.2]
561
+ ## [0.7.2]
301
562
 
302
563
  * Do not trigger Announcer API deprecation warning ([#277])
303
564
 
304
- ## [v0.7.1]
565
+ ## [0.7.1]
305
566
 
306
- * Do not break if @interactive is used
567
+ * Do not break if `@interactive` is used
307
568
 
308
- ## [v0.7.0]
569
+ ## [0.7.0]
309
570
 
310
- * Introducing root_directory ([#232])
571
+ * Introducing `root_directory` ([#232])
311
572
  * Introducing fixtures directory ([#224])
312
573
  * Make sure a file/directory does not exist + Cleanup named file/directory steps ([#234])
313
- * Make matcher have_permisions public and add documentation ([#239])
574
+ * Make matcher `have_permisions` public and add documentation ([#239])
314
575
  * Added matcher for file content ([#238])
315
576
  * Add rspec integrator ([#244])
316
577
  * Deprecate `_file` and `_directory` in method names ([#243])
@@ -320,180 +581,180 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
320
581
  * Refactor announcer to support user defined announce channels (fixes [#267])
321
582
  * `InProcess` requires that the working directory is determined on runtime not no loadtime
322
583
 
323
- ## [v0.6.2]
584
+ ## [0.6.2]
324
585
 
325
586
  * Fixed minor [#223])
326
587
  * Added support for ruby 2.1.3 -- 2.1.5
327
588
  * Added support for comparison to a fixture file
328
589
 
329
- ## [v0.6.1]
590
+ ## [0.6.1]
330
591
 
331
592
  * Added support for ruby 2.1.2
332
- * Added support for ~ expansion
333
- * Added support for with_env
593
+ * Added support for `~` expansion
594
+ * Added support for `with_env`
334
595
 
335
- ## [v0.6.0]
596
+ ## [0.6.0]
336
597
 
337
598
  * Dropped support for ruby 1.8
338
599
  * Added support for ruby 2.1.0 and 2.1.1
339
600
  * Added rspec 3.0.0 support
340
601
 
341
- ## [v0.5.4]
602
+ ## [0.5.4]
342
603
 
343
604
  * Added support for piping in files ([#154], [maxmeyer], dg-vrnetze)
344
605
  * Added cucumber steps for environment variables ([#156], dg-vrnetze)
345
606
  * Added support for file mode ([#157], [maxmeyer], dg-vrnetze)
346
607
 
347
- ## [v0.5.3]
608
+ ## [0.5.3]
348
609
 
349
610
  * Fix for UTF-8 support ([#151], [mattwynne], [jarl-dk])
350
- * Fix for open file leakage ([#150], [jonrowe])
611
+ * Fix for open file leakage ([#150], [JonRowe])
351
612
 
352
- ## [v0.5.2]
613
+ ## [0.5.2]
353
614
 
354
615
  * Plugin API for greater speed. Test Ruby CLI programs in a single Ruby process ([#148], [aslakhellesoy])
355
616
  * Fix memory leak when several commands are executed in a single run ([#144], [y-higuchi])
356
617
 
357
- ## [v0.5.1]
618
+ ## [0.5.1]
358
619
 
359
620
  * Individual timeout settings when running commands ([#124], [jarl-dk])
360
621
  * Varous fixes for JRuby tests, should now work on more versions of JRuby
361
622
 
362
- ## [v0.5.0]
623
+ ## [0.5.0]
363
624
 
364
- * Add #with_file_content to the DSL ([#110], [argent-smith])
625
+ * Add `#with_file_content` to the DSL ([#110], [argent-smith])
365
626
  * Make JRuby performance tweaks optional ([#102], [taylor], [#125], [alindeman])
366
- * Add assert_partial_output_interactive so you can peek at the output from a running process ([#104], [taylor])
367
- * Add assert_not_matching_output ([#111], [argent-smith])
368
- * Add remove_dir ([#121], [LTe])
627
+ * Add `assert_partial_output_interactive` so you can peek at the output from a running process ([#104], [taylor])
628
+ * Add `assert_not_matching_output` ([#111], [argent-smith])
629
+ * Add `remove_dir` ([#121], [LTe])
369
630
 
370
- ## [v0.4.11]
631
+ ## [0.4.11]
371
632
 
372
633
  * Fix duplicated output ([#91], [robertwahler], [mattwynne])
373
634
  * Fix Gemspec format ([#101], [mattwynne])
374
635
 
375
- ## [v0.4.10]
636
+ ## [0.4.10]
376
637
 
377
638
  * Fix broken JRuby file following rename of hook ([tdreyno])
378
639
  * Add terminate method to API ([taylor])
379
640
 
380
- ## [v0.4.9]
641
+ ## [0.4.9]
381
642
 
382
- * Rename before_run hook to before_cmd ([mattwynne])
643
+ * Rename `before_run` hook to `before_cmd` ([mattwynne])
383
644
  * Fix 1.8.7 compatibility ([#95], [davetron5000])
384
645
 
385
- ## [v0.4.8]
646
+ ## [0.4.8]
386
647
 
387
- * Add before_run hook ([mattwynne])
648
+ * Add `before_run` hook ([mattwynne])
388
649
  * Add JRuby performance tweaks ([#93], [myronmarston], [mattwynne])
389
650
  * Invalid/Corrupt spec file for 0.4.7 - undefined method call for nil:Nilclass ([#47], [aslakhellesoy])
390
651
 
391
- ## [v0.4.7]
652
+ ## [0.4.7]
392
653
 
393
654
  * Remove rdiscount dependency. ([#85], [aslakhellesoy])
394
655
  * Pin to ffi 1.0.9 since 1.0.10 is broken. ([aslakhellesoy])
395
656
  * Added file size specific steps to the Aruba API. ([#89], [hectcastro])
396
657
 
397
- ## [v0.4.6]
658
+ ## [0.4.6]
398
659
 
399
660
  * Upgraded deps to latest gems. ([aslakhellesoy])
400
- * Added Regexp support to Aruba::Api#assert_no_partial_output ([aslakhellesoy])
661
+ * Added Regexp support to `Aruba::Api#assert_no_partial_output`. ([aslakhellesoy])
401
662
 
402
- ## [v0.4.5]
663
+ ## [0.4.5]
403
664
 
404
665
  * Better assertion failure message when an exit code is not as expected.
405
666
  ([mattwynne])
406
667
 
407
- ## [v0.4.4]
668
+ ## [0.4.4]
408
669
 
409
670
  * Fix various bugs with interative processes. ([mattwynne])
410
671
 
411
- ## [v0.4.3]
672
+ ## [0.4.3]
412
673
 
413
674
  * Aruba reporting now creates an index file for reports, linking them all
414
675
  together. ([aslakhellesoy])
415
676
 
416
- ## [v0.4.2]
677
+ ## [0.4.2]
417
678
 
418
679
  * Appending to a file creates the parent directory if it doesn't exist.
419
680
  ([aslakhellesoy])
420
681
 
421
- ## [v0.4.1]
682
+ ## [0.4.1]
422
683
 
423
684
  * Move more logic into Aruba::Api ([aslakhellesoy])
424
685
 
425
- ## [v0.4.0]
686
+ ## [0.4.0]
426
687
 
427
688
  * New, awesome HTML reporting feature that captures everything that happens
428
689
  during a scenario. ([aslakhellesoy])
429
690
  * ANSI escapes from output are stripped by default. Override this with the @ansi
430
691
  tag. ([aslakhellesoy])
431
692
 
432
- ## [v0.3.7]
693
+ ## [0.3.7]
433
694
 
434
- * Make Aruba::Api#get_process return the last executed process with passed cmd
695
+ * Make `Aruba::Api#get_process` return the last executed process with passed cmd
435
696
  ([greyblake])
436
697
  * Replace announce with puts to comply with cucumber 0.10.6 ([aslakhellesoy])
437
698
  * Fix childprocess STDIN to be synchronous ([#40], [#71], [lithium3141])
438
699
 
439
- ## [v0.3.6]
700
+ ## [0.3.6]
440
701
 
441
- * Changed default value of @aruba_timeout_seconds from 1 to 3. ([aslakhellesoy])
702
+ * Changed default value of `@aruba_timeout_seconds` from 1 to 3. ([aslakhellesoy])
442
703
  * Separate hooks and steps to make it easier to build your own steps on top of
443
704
  Aruba's API ([msassak])
444
- * @no-clobber to prevent cleanup before each scenario ([msassak])
705
+ * `@no-clobber` to prevent cleanup before each scenario ([msassak])
445
706
 
446
- ## [v0.3.5]
707
+ ## [0.3.5]
447
708
 
448
709
  * Store processes in an array to ensure order of operations on Ruby 1.8.x
449
710
  ([#48] [msassak])
450
711
 
451
- ## [v0.3.4]
712
+ ## [0.3.4]
452
713
 
453
714
  * Use backticks (\`) instead of quotes (") to specify command line. Quote still
454
715
  works, but is deprecated. ([aeden], [aslakhellesoy])
455
716
 
456
- ## [v0.3.3]
717
+ ## [0.3.3]
457
718
 
458
719
  * Updated RSpec development requirement to 2.5 ([rspeicher], [msassak],
459
720
  [aslakhellesoy])
460
721
  * Updated RubyGems dependency to 1.6.1 ([rspeicher])
461
722
 
462
- ## [v0.3.2]
723
+ ## [0.3.2]
463
724
 
464
725
  * Wrong number of args in the When I overwrite step ([aslakhellesoy])
465
726
 
466
- ## [v0.3.1]
727
+ ## [0.3.1]
467
728
 
468
729
  * Broken 0.3.0 release ([#43], [#44], [msassak])
469
730
  * Quotes (") and newline (\n) in step arguments are no longer unescaped. ([aslakhellesoy])
470
731
 
471
- ## [v0.3.0]
732
+ ## [0.3.0]
472
733
 
473
734
  * Remove latency introduced in the 0.2.8 release ([#42], [msassak])
474
- * New stepdef Then /^the stdout should contain:$/ do |partial_output| ([aslakhellesoy])
735
+ * New stepdef `Then /^the stdout should contain:$/ do |partial_output|` ([aslakhellesoy])
475
736
  * Quotes (") and newline (\n) in step arguments no longer need to be backslash-escaped. ([aslakhellesoy])
476
737
 
477
- ## [v0.2.8]
738
+ ## [0.2.8]
478
739
 
479
- * Replaced background_process with childprocess, a cross-platform process control
740
+ * Replaced `background_process` with `childprocess`, a cross-platform process control
480
741
  library. This will allow Aruba to run on Windows and JRuby in addition to \*nix
481
742
  MRI. ([#16], [#27], [#31], [msassak], [jarib], [mattwynne], [aknuds1])
482
743
 
483
- ## [v0.2.7]
744
+ ## [0.2.7]
484
745
 
485
746
  * Upgrade to Cucumber 0.10.0. ([aslakhellesoy])
486
- * require 'aruba' does nothing - you have to require 'aruba/cucumber' now. This
747
+ * `require 'aruba'` does nothing - you have to `require 'aruba/cucumber'` now. This
487
748
  is to prevent bundler from loading it when we don't want to. ([aslakhellesoy])
488
749
  * Outputting a lot of data causes process to time out ([#30], [msassak])
489
750
 
490
- ## [v0.2.6]
751
+ ## [0.2.6]
491
752
 
492
753
  * You can set `@aruba_timeout_seconds` in a Before hook to tell Aruba to wait
493
754
  for a process to complete. Default: 1 second. ([aslakhellesoy])
494
755
  * Fixed small bug in `/^the stdout should contain exactly:$/` ([aslakhellesoy])
495
756
 
496
- ## [v0.2.5]
757
+ ## [0.2.5]
497
758
 
498
759
  * Added 'a file named "whatever" should (not) exist' ([rspeicher])
499
760
  * Added 'a directory named "whatever" should (not) exist' ([rspeicher])
@@ -506,12 +767,12 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
506
767
  are complete ([#17], [msassak])
507
768
  * Outputting large amounts of data causes run steps to hang ([#18], [msassak])
508
769
 
509
- ## [v0.2.4]
770
+ ## [0.2.4]
510
771
 
511
772
  * Added step definitions for removing files and checking presence of a single
512
773
  file. ([aslakhellesoy])
513
774
 
514
- ## [v0.2.3]
775
+ ## [0.2.3]
515
776
 
516
777
  * Directory should not exist gives false-positive ([#13], [#15], [nruth])
517
778
  * Added step definitions for comparing file contents with regexps ([#9],
@@ -521,17 +782,17 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
521
782
  * Communication with interactive processes ([#4], [msassak])
522
783
  * Remove hyphens separating stdout and stderr ([aknuds1])
523
784
 
524
- ## [v0.2.2]
785
+ ## [0.2.2]
525
786
 
526
787
  * Added a @bin tag that sets up './bin' first on the path ([aslakhellesoy])
527
788
  * Richer API making aruba easier to use from Ruby code. (Mark Nijhof, [aslakhellesoy])
528
789
  * No more support for RVM. Use rvm 1.9.2,1.8.7 exec cucumber .... instead. (Mark Nijhof, [aslakhellesoy])
529
790
 
530
- ## [v0.2.1]
791
+ ## [0.2.1]
531
792
 
532
793
  * Always compare with RSpec should =~ instead of should match. This gives a diff when there is no match. ([aslakhellesoy])
533
794
 
534
- ## [v0.2.0]
795
+ ## [0.2.0]
535
796
 
536
797
  * Added aruba.gemspec. ([dchelimsky])
537
798
  * Several step definitions regarding output have changed. ([#1], [aslakhellesoy])
@@ -560,28 +821,28 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
560
821
  - /^I should see matching:$/
561
822
  + /^the output should match:$/
562
823
 
563
- ## [v0.1.9]
824
+ ## [0.1.9]
564
825
 
565
826
  * If the GOTGEMS environment variable is set, bundler won't run (faster). ([aslakhellesoy])
566
827
 
567
- ## [v0.1.8]
828
+ ## [0.1.8]
568
829
 
569
830
  * Use // instead of "" for "I should see matching" step. ([aslakhellesoy])
570
831
  * Replace rvm gemset character '%' with '@' for rvm 0.1.24 ([#5], Ashley Moran)
571
832
  * Support gem bundler, making it easier to specify gems. ([aslakhellesoy])
572
833
 
573
- ## [v0.1.7]
834
+ ## [0.1.7]
574
835
 
575
836
  * New @announce-stderr tag ([robertwahler])
576
837
  * New "I should see matching" steps using Regexp ([robertwahler])
577
838
 
578
- ## [v0.1.6]
839
+ ## [0.1.6]
579
840
 
580
841
  * `When /^I successfully run "(.*)"$/` now prints the combined output if exit
581
842
  status is not 0. ([aslakhellesoy])
582
843
  * Add bundle to list of common ruby scripts. ([aslakhellesoy])
583
844
 
584
- ## [v0.1.5]
845
+ ## [0.1.5]
585
846
 
586
847
  * Added ability to map rvm versions to a specific version with config/aruba-rvm.yml. ([aslakhellesoy])
587
848
  * Check for presence of files. ([aslakhellesoy])
@@ -590,75 +851,169 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
590
851
  * Added support for rvm, making it possible to choose Ruby interpreter. ([aslakhellesoy])
591
852
  * Added @announce-cmd, @announce-stdout and @announce tags, useful for seeing what's executed and outputted. ([aslakhellesoy])
592
853
 
593
- ## [v0.1.4]
854
+ ## [0.1.4]
594
855
 
595
856
  * New step definition for appending to a file ([aslakhellesoy])
596
857
 
597
- ## [v0.1.3]
858
+ ## [0.1.3]
598
859
 
599
860
  * New step definition for cd (change directory) ([aslakhellesoy])
600
861
 
601
- ## [v0.1.2]
862
+ ## [0.1.2]
602
863
 
603
864
  * Separated API from Cucumber step definitions, makes this usable without Cucumber. ([aslakhellesoy])
604
865
 
605
- ## [v0.1.1]
866
+ ## [0.1.1]
606
867
 
607
868
  * Better Regexp escaping ([dchelimsky])
608
869
 
609
- ## [v0.1.0]
870
+ ## [0.1.0]
610
871
 
611
872
  * First release ([dchelimsky] and [aslakhellesoy])
612
873
 
613
874
  <!-- Contributors -->
614
875
 
615
- [AdrieanKhisbe]: https://github.com/AdrieanKhisbe
616
- [LTe]: https://github.com/LTe
617
- [aeden]: https://github.com/aeden
618
- [aknuds1]: https://github.com/aknuds1
619
- [alindeman]: https://github.com/alindeman
620
- [aslakhellesoy]: https://github.com/aslakhellesoy
621
- [davetron5000]: https://github.com/davetron5000
622
- [dchelimsky]: https://github.com/dchelimsky
623
- [doudou]: https://github.com/doudou
624
- [e2]: https://github.com/e2
625
- [greyblake]: https://github.com/greyblake
626
- [hectcastro]: https://github.com/hectcastro
627
- [jarib]: https://github.com/jarib
628
- [jaysonesmith]: https://github.com/jaysonesmith
629
- [jonrowe]: https://github.com/JonRowe
630
- [lithium3141]: https://github.com/lithium3141
631
- [mattwynne]: https://github.com/mattwynne
632
- [maxmeyer]: https://github.com/maxmeyer
633
- [msassak]: https://github.com/msassak
634
- [mvz]: https://github.com/mvz
635
- [myronmarston]: https://github.com/myronmarston
636
- [njam]: https://github.com/njam
637
- [nruth]: https://github.com/nruth
638
- [olleolleolle]: https://github.com/olleolleolle
639
- [richardxia]: https://github.com/richardxia
640
- [robertwahler]: https://github.com/robertwahler
641
- [roschaefer]: https://github.com/roschaefer
642
- [rspeicher]: https://github.com/rspeicher
643
- [rubbish]: https://github.com/rubbish
644
- [scottj97]: https://github.com/scottj97
645
- [stamhankar999]: https://github.com/stamhankar999
646
- [taylor]: https://github.com/taylor
647
- [tdreyno]: https://github.com/tdreyno
876
+ [AdrieanKhisbe]: https://github.com/AdrieanKhisbe
877
+ [Heinrich]: https://github.com/Heinrich
878
+ [JonRowe]: https://github.com/JonRowe
879
+ [LTe]: https://github.com/LTe
880
+ [aeden]: https://github.com/aeden
881
+ [aknuds1]: https://github.com/aknuds1
882
+ [alindeman]: https://github.com/alindeman
883
+ [amatsuda]: https://github.com/amatsuda
884
+ [argent-smith]: https://github.com/argent-smith
885
+ [aslakhellesoy]: https://github.com/aslakhellesoy
886
+ [cllns]: https://github.com/cllns
887
+ [davetron5000]: https://github.com/davetron5000
888
+ [dchelimsky]: https://github.com/dchelimsky
889
+ [deivid-rodriguez]: https://github.com/deivid-rodriguez
890
+ [doudou]: https://github.com/doudou
891
+ [e2]: https://github.com/e2
892
+ [greyblake]: https://github.com/greyblake
893
+ [grosser]: https://github.com/grosser
894
+ [hectcastro]: https://github.com/hectcastro
895
+ [jarib]: https://github.com/jarib
896
+ [jarl-dk]: https://github.com/jarl-dk
897
+ [jaysonesmith]: https://github.com/jaysonesmith
898
+ [junaruga]: https://github.com/junaruga
899
+ [koic]: https://github.com/koic
900
+ [lithium3141]: https://github.com/lithium3141
901
+ [luke-hill]: https://github.com/luke-hill
902
+ [mattwynne]: https://github.com/mattwynne
903
+ [maxmeyer]: https://github.com/maxmeyer
904
+ [msassak]: https://github.com/msassak
905
+ [mvz]: https://github.com/mvz
906
+ [myronmarston]: https://github.com/myronmarston
907
+ [nicolasleger]: https://github.com/nicolasleger
908
+ [njam]: https://github.com/njam
909
+ [nruth]: https://github.com/nruth
910
+ [olleolleolle]: https://github.com/olleolleolle
911
+ [richardxia]: https://github.com/richardxia
912
+ [robertwahler]: https://github.com/robertwahler
913
+ [roschaefer]: https://github.com/roschaefer
914
+ [rspeicher]: https://github.com/rspeicher
915
+ [rubbish]: https://github.com/rubbish
916
+ [scottj97]: https://github.com/scottj97
917
+ [stamhankar999]: https://github.com/stamhankar999
918
+ [taylor]: https://github.com/taylor
919
+ [tdreyno]: https://github.com/tdreyno
648
920
  [xtrasimplicity]: https://github.com/xtrasimplicity
921
+ [y-higuchi]: https://github.com/y-higuchi
649
922
 
650
923
  <!-- issues & pull requests -->
651
924
 
925
+ [#704]: https://github.com/cucumber/aruba/pull/704
926
+ [#703]: https://github.com/cucumber/aruba/pull/703
927
+ [#702]: https://github.com/cucumber/aruba/pull/702
928
+ [#701]: https://github.com/cucumber/aruba/pull/701
929
+ [#698]: https://github.com/cucumber/aruba/pull/698
930
+ [#696]: https://github.com/cucumber/aruba/pull/696
931
+ [#692]: https://github.com/cucumber/aruba/pull/692
932
+ [#690]: https://github.com/cucumber/aruba/pull/690
933
+ [#689]: https://github.com/cucumber/aruba/pull/689
934
+ [#688]: https://github.com/cucumber/aruba/pull/688
935
+ [#687]: https://github.com/cucumber/aruba/pull/687
936
+ [#686]: https://github.com/cucumber/aruba/pull/686
937
+ [#683]: https://github.com/cucumber/aruba/pull/683
938
+ [#679]: https://github.com/cucumber/aruba/pull/679
939
+ [#677]: https://github.com/cucumber/aruba/pull/677
940
+ [#676]: https://github.com/cucumber/aruba/pull/676
941
+ [#675]: https://github.com/cucumber/aruba/pull/675
942
+ [#674]: https://github.com/cucumber/aruba/pull/674
943
+ [#673]: https://github.com/cucumber/aruba/pull/673
944
+ [#672]: https://github.com/cucumber/aruba/pull/672
945
+ [#671]: https://github.com/cucumber/aruba/pull/671
946
+ [#669]: https://github.com/cucumber/aruba/pull/669
947
+ [#668]: https://github.com/cucumber/aruba/pull/668
948
+ [#666]: https://github.com/cucumber/aruba/pull/666
949
+ [#665]: https://github.com/cucumber/aruba/pull/665
950
+ [#664]: https://github.com/cucumber/aruba/pull/664
951
+ [#663]: https://github.com/cucumber/aruba/pull/663
952
+ [#660]: https://github.com/cucumber/aruba/pull/660
953
+ [#659]: https://github.com/cucumber/aruba/pull/659
954
+ [#658]: https://github.com/cucumber/aruba/pull/658
955
+ [#657]: https://github.com/cucumber/aruba/pull/657
956
+ [#656]: https://github.com/cucumber/aruba/pull/656
957
+ [#655]: https://github.com/cucumber/aruba/pull/655
958
+ [#654]: https://github.com/cucumber/aruba/pull/654
959
+ [#652]: https://github.com/cucumber/aruba/pull/652
960
+ [#650]: https://github.com/cucumber/aruba/pull/650
961
+ [#647]: https://github.com/cucumber/aruba/pull/647
962
+ [#645]: https://github.com/cucumber/aruba/pull/645
963
+ [#644]: https://github.com/cucumber/aruba/pull/644
964
+ [#643]: https://github.com/cucumber/aruba/pull/643
965
+ [#642]: https://github.com/cucumber/aruba/pull/642
966
+ [#639]: https://github.com/cucumber/aruba/pull/639
967
+ [#638]: https://github.com/cucumber/aruba/pull/638
968
+ [#637]: https://github.com/cucumber/aruba/pull/637
969
+ [#636]: https://github.com/cucumber/aruba/pull/636
970
+ [#635]: https://github.com/cucumber/aruba/pull/635
971
+ [#631]: https://github.com/cucumber/aruba/pull/631
972
+ [#629]: https://github.com/cucumber/aruba/pull/629
973
+ [#628]: https://github.com/cucumber/aruba/pull/628
974
+ [#626]: https://github.com/cucumber/aruba/pull/626
975
+ [#623]: https://github.com/cucumber/aruba/pull/623
976
+ [#622]: https://github.com/cucumber/aruba/pull/622
977
+ [#621]: https://github.com/cucumber/aruba/pull/621
978
+ [#620]: https://github.com/cucumber/aruba/pull/620
979
+ [#618]: https://github.com/cucumber/aruba/pull/618
980
+ [#616]: https://github.com/cucumber/aruba/pull/616
981
+ [#615]: https://github.com/cucumber/aruba/pull/615
982
+ [#613]: https://github.com/cucumber/aruba/pull/613
983
+ [#612]: https://github.com/cucumber/aruba/pull/612
984
+ [#611]: https://github.com/cucumber/aruba/pull/611
985
+ [#610]: https://github.com/cucumber/aruba/pull/610
986
+ [#607]: https://github.com/cucumber/aruba/pull/607
987
+ [#606]: https://github.com/cucumber/aruba/pull/606
652
988
  [#604]: https://github.com/cucumber/aruba/pull/604
989
+ [#603]: https://github.com/cucumber/aruba/pull/603
990
+ [#602]: https://github.com/cucumber/aruba/pull/602
653
991
  [#601]: https://github.com/cucumber/aruba/pull/601
654
992
  [#597]: https://github.com/cucumber/aruba/pull/597
993
+ [#596]: https://github.com/cucumber/aruba/pull/596
994
+ [#594]: https://github.com/cucumber/aruba/pull/594
995
+ [#593]: https://github.com/cucumber/aruba/pull/593
655
996
  [#591]: https://github.com/cucumber/aruba/pull/591
656
997
  [#588]: https://github.com/cucumber/aruba/pull/588
998
+ [#587]: https://github.com/cucumber/aruba/pull/587
657
999
  [#585]: https://github.com/cucumber/aruba/pull/585
1000
+ [#584]: https://github.com/cucumber/aruba/pull/584
1001
+ [#583]: https://github.com/cucumber/aruba/pull/583
658
1002
  [#582]: https://github.com/cucumber/aruba/pull/582
1003
+ [#581]: https://github.com/cucumber/aruba/pull/581
1004
+ [#580]: https://github.com/cucumber/aruba/pull/580
1005
+ [#578]: https://github.com/cucumber/aruba/pull/578
1006
+ [#575]: https://github.com/cucumber/aruba/pull/575
659
1007
  [#572]: https://github.com/cucumber/aruba/pull/572
1008
+ [#571]: https://github.com/cucumber/aruba/pull/571
1009
+ [#570]: https://github.com/cucumber/aruba/pull/570
1010
+ [#562]: https://github.com/cucumber/aruba/pull/562
660
1011
  [#561]: https://github.com/cucumber/aruba/pull/561
1012
+ [#560]: https://github.com/cucumber/aruba/pull/560
661
1013
  [#557]: https://github.com/cucumber/aruba/pull/557
1014
+ [#555]: https://github.com/cucumber/aruba/pull/555
1015
+ [#554]: https://github.com/cucumber/aruba/pull/554
1016
+ [#553]: https://github.com/cucumber/aruba/pull/553
662
1017
  [#551]: https://github.com/cucumber/aruba/pull/551
663
1018
  [#548]: https://github.com/cucumber/aruba/pull/548
664
1019
  [#546]: https://github.com/cucumber/aruba/pull/546
@@ -831,93 +1186,105 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
831
1186
 
832
1187
  <!-- Releases -->
833
1188
 
834
- [v0.14.9]: https://github.com/cucumber/aruba/compare/v0.14.8...v0.14.9
835
- [v0.14.8]: https://github.com/cucumber/aruba/compare/v0.14.7...v0.14.8
836
- [v0.14.7]: https://github.com/cucumber/aruba/compare/v0.14.6...v0.14.7
837
- [v0.14.6]: https://github.com/cucumber/aruba/compare/v0.14.5...v0.14.6
838
- [v0.14.5]: https://github.com/cucumber/aruba/compare/v0.14.4...v0.14.5
839
- [v0.14.4]: https://github.com/cucumber/aruba/compare/v0.14.3...v0.14.4
840
- [v0.14.3]: https://github.com/cucumber/aruba/compare/v0.14.2...v0.14.3
841
- [v0.14.2]: https://github.com/cucumber/aruba/compare/v0.14.1...v0.14.2
842
- [v0.14.1]: https://github.com/cucumber/aruba/compare/v0.14.0...v0.14.1
843
- [v0.14.0]: https://github.com/cucumber/aruba/compare/v0.13.0...v0.14.0
844
- [v0.13.0]: https://github.com/cucumber/aruba/compare/v0.12.0...v0.13.0
845
- [v0.12.0]: https://github.com/cucumber/aruba/compare/v0.11.2...v0.12.0
846
- [v0.11.2]: https://github.com/cucumber/aruba/compare/v0.11.1...v0.11.2
847
- [v0.11.1]: https://github.com/cucumber/aruba/compare/v0.11.0...v0.11.1
848
- [v0.11.0]: https://github.com/cucumber/aruba/compare/v0.11.0.pre4...v0.11.0
849
- [v0.11.0.pre4]: https://github.com/cucumber/aruba/compare/v0.11.0.pre3...v0.11.0.pre4
850
- [v0.11.0.pre3]: https://github.com/cucumber/aruba/compare/v0.11.0.pre2...v0.11.0.pre3
851
- [v0.11.0.pre2]: https://github.com/cucumber/aruba/compare/v0.11.0.pre...v0.11.0.pre2
852
- [v0.11.0.pre]: https://github.com/cucumber/aruba/compare/v0.10.2...v0.11.0.pre
853
- [v0.10.2]: https://github.com/cucumber/aruba/compare/v0.10.1...v0.10.2
854
- [v0.10.1]: https://github.com/cucumber/aruba/compare/v0.10.0...v0.10.1
855
- [v0.10.0]: https://github.com/cucumber/aruba/compare/v0.10.0.pre2...v0.10.0
856
- [v0.10.0.pre2]: https://github.com/cucumber/aruba/compare/v0.10.0.pre...v0.10.0.pre2
857
- [v0.10.0.pre]: https://github.com/cucumber/aruba/compare/v0.9.0...v0.10.0
858
- [v0.9.0]: https://github.com/cucumber/aruba/compare/v0.9.0.pre2...v0.9.0
859
- [v0.9.0.pre2]: https://github.com/cucumber/aruba/compare/v0.9.0.pre...v0.9.0.pre2
860
- [v0.9.0.pre]: https://github.com/cucumber/aruba/compare/v0.8.1...v0.9.0.pre
861
- [v0.8.1]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.1
862
- [v0.8.0]: https://github.com/cucumber/aruba/compare/v0.8.0.pre3...v0.8.0
863
- [v0.8.0.pre3]: https://github.com/cucumber/aruba/compare/v0.8.0.pre2...v0.8.0.pre3
864
- [v0.8.0.pre2]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.0.pre2
865
- [v0.8.0.pre]: https://github.com/cucumber/aruba/compare/v0.7.4...v0.8.0.pre
866
- [v0.7.4]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.4
867
- [v0.7.3]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.3
868
- [v0.7.2]: https://github.com/cucumber/aruba/compare/v0.7.1...v0.7.2
869
- [v0.7.1]: https://github.com/cucumber/aruba/compare/v0.7.0...v0.7.1
870
- [v0.7.0]: https://github.com/cucumber/aruba/compare/v0.6.2...v0.7.0
871
- [v0.6.2]: https://github.com/cucumber/aruba/compare/v0.6.1...v0.6.2
872
- [v0.6.1]: https://github.com/cucumber/aruba/compare/v0.6.0...v0.6.1
873
- [v0.6.0]: https://github.com/cucumber/aruba/compare/v0.5.4...v0.6.0
874
- [v0.5.4]: https://github.com/cucumber/aruba/compare/v0.5.3...v0.5.4
875
- [v0.5.3]: https://github.com/cucumber/aruba/compare/v0.5.2...v0.5.3
876
- [v0.5.2]: https://github.com/cucumber/aruba/compare/v0.5.1...v0.5.2
877
- [v0.5.1]: https://github.com/cucumber/aruba/compare/v0.5.0...v0.5.1
878
- [v0.5.0]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.5.0
879
- [v0.4.11]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.4.11
880
- [v0.4.10]: https://github.com/cucumber/aruba/compare/v0.4.9...v0.4.10
881
- [v0.4.9]: https://github.com/cucumber/aruba/compare/v0.4.8...v0.4.9
882
- [v0.4.8]: https://github.com/cucumber/aruba/compare/v0.4.7...v0.4.8
883
- [v0.4.7]: https://github.com/cucumber/aruba/compare/v0.4.6...v0.4.7
884
- [v0.4.6]: https://github.com/cucumber/aruba/compare/v0.4.5...v0.4.6
885
- [v0.4.5]: https://github.com/cucumber/aruba/compare/v0.4.4...v0.4.5
886
- [v0.4.4]: https://github.com/cucumber/aruba/compare/v0.4.3...v0.4.4
887
- [v0.4.3]: https://github.com/cucumber/aruba/compare/v0.4.2...v0.4.3
888
- [v0.4.2]: https://github.com/cucumber/aruba/compare/v0.4.1...v0.4.2
889
- [v0.4.1]: https://github.com/cucumber/aruba/compare/v0.4.0...v0.4.1
890
- [v0.4.0]: https://github.com/cucumber/aruba/compare/v0.3.7...v0.4.0
891
- [v0.3.7]: https://github.com/cucumber/aruba/compare/v0.3.6...v0.3.7
892
- [v0.3.6]: https://github.com/cucumber/aruba/compare/v0.3.5...v0.3.6
893
- [v0.3.5]: https://github.com/cucumber/aruba/compare/v0.3.4...v0.3.5
894
- [v0.3.4]: https://github.com/cucumber/aruba/compare/v0.3.3...v0.3.4
895
- [v0.3.3]: https://github.com/cucumber/aruba/compare/v0.3.2...v0.3.3
896
- [v0.3.2]: https://github.com/cucumber/aruba/compare/v0.3.1...v0.3.2
897
- [v0.3.1]: https://github.com/cucumber/aruba/compare/v0.3.0...v0.3.1
898
- [v0.3.0]: https://github.com/cucumber/aruba/compare/v0.2.8...v0.3.0
899
- [v0.2.8]: https://github.com/cucumber/aruba/compare/v0.2.7...v0.2.8
900
- [v0.2.7]: https://github.com/cucumber/aruba/compare/v0.2.6...v0.2.7
901
- [v0.2.6]: https://github.com/cucumber/aruba/compare/v0.2.5...v0.2.6
902
- [v0.2.5]: https://github.com/cucumber/aruba/compare/v0.2.4...v0.2.5
903
- [v0.2.4]: https://github.com/cucumber/aruba/compare/v0.2.3...v0.2.4
904
- [v0.2.3]: https://github.com/cucumber/aruba/compare/v0.2.2...v0.2.3
905
- [v0.2.2]: https://github.com/cucumber/aruba/compare/v0.2.1...v0.2.2
906
- [v0.2.1]: https://github.com/cucumber/aruba/compare/v0.2.0...v0.2.1
907
- [v0.2.0]: https://github.com/cucumber/aruba/compare/v0.1.9...v0.2.0
908
- [v0.1.9]: https://github.com/cucumber/aruba/compare/v0.1.8...v0.1.9
909
- [v0.1.8]: https://github.com/cucumber/aruba/compare/v0.1.7...v0.1.8
910
- [v0.1.7]: https://github.com/cucumber/aruba/compare/v0.1.6...v0.1.7
911
- [v0.1.6]: https://github.com/cucumber/aruba/compare/v0.1.5...v0.1.6
912
- [v0.1.5]: https://github.com/cucumber/aruba/compare/v0.1.4...v0.1.5
913
- [v0.1.4]: https://github.com/cucumber/aruba/compare/v0.1.3...v0.1.4
914
- [v0.1.3]: https://github.com/cucumber/aruba/compare/v0.1.2...v0.1.3
915
- [v0.1.2]: https://github.com/cucumber/aruba/compare/v0.1.1...v0.1.2
916
- [v0.1.1]: https://github.com/cucumber/aruba/compare/v0.1.0...v0.1.1
917
- [v0.1.0]: https://github.com/cucumber/aruba/compare/ed6a175d23aaff62dbf355706996f276f304ae8b...v0.1.1
1189
+ [Unreleased]: https://github.com/cucumber/aruba/compare/v1.0.0...master
1190
+ [1.0.0]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.5...v1.0.0
1191
+ [1.0.0.pre.alpha.5]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.4...v1.0.0.pre.alpha.5
1192
+ [1.0.0.pre.alpha.4]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.3...v1.0.0.pre.alpha.4
1193
+ [1.0.0.pre.alpha.3]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.2...v1.0.0.pre.alpha.3
1194
+ [1.0.0.pre.alpha.2]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.1...v1.0.0.pre.alpha.2
1195
+ [1.0.0.pre.alpha.1]: https://github.com/cucumber/aruba/compare/v0.14.1...v1.0.0.pre.alpha.1
1196
+ [0.14.14]: https://github.com/cucumber/aruba/compare/v0.14.13...v0.14.14
1197
+ [0.14.13]: https://github.com/cucumber/aruba/compare/v0.14.12...v0.14.13
1198
+ [0.14.12]: https://github.com/cucumber/aruba/compare/v0.14.11...v0.14.12
1199
+ [0.14.11]: https://github.com/cucumber/aruba/compare/v0.14.10...v0.14.11
1200
+ [0.14.10]: https://github.com/cucumber/aruba/compare/v0.14.9...v0.14.10
1201
+ [0.14.9]: https://github.com/cucumber/aruba/compare/v0.14.8...v0.14.9
1202
+ [0.14.8]: https://github.com/cucumber/aruba/compare/v0.14.7...v0.14.8
1203
+ [0.14.7]: https://github.com/cucumber/aruba/compare/v0.14.6...v0.14.7
1204
+ [0.14.6]: https://github.com/cucumber/aruba/compare/v0.14.5...v0.14.6
1205
+ [0.14.5]: https://github.com/cucumber/aruba/compare/v0.14.4...v0.14.5
1206
+ [0.14.4]: https://github.com/cucumber/aruba/compare/v0.14.3...v0.14.4
1207
+ [0.14.3]: https://github.com/cucumber/aruba/compare/v0.14.2...v0.14.3
1208
+ [0.14.2]: https://github.com/cucumber/aruba/compare/v0.14.1...v0.14.2
1209
+ [0.14.1]: https://github.com/cucumber/aruba/compare/v0.14.0...v0.14.1
1210
+ [0.14.0]: https://github.com/cucumber/aruba/compare/v0.13.0...v0.14.0
1211
+ [0.13.0]: https://github.com/cucumber/aruba/compare/v0.12.0...v0.13.0
1212
+ [0.12.0]: https://github.com/cucumber/aruba/compare/v0.11.2...v0.12.0
1213
+ [0.11.2]: https://github.com/cucumber/aruba/compare/v0.11.1...v0.11.2
1214
+ [0.11.1]: https://github.com/cucumber/aruba/compare/v0.11.0...v0.11.1
1215
+ [0.11.0]: https://github.com/cucumber/aruba/compare/v0.11.0.pre4...v0.11.0
1216
+ [0.11.0.pre4]: https://github.com/cucumber/aruba/compare/v0.11.0.pre3...v0.11.0.pre4
1217
+ [0.11.0.pre3]: https://github.com/cucumber/aruba/compare/v0.11.0.pre2...v0.11.0.pre3
1218
+ [0.11.0.pre2]: https://github.com/cucumber/aruba/compare/v0.11.0.pre...v0.11.0.pre2
1219
+ [0.11.0.pre]: https://github.com/cucumber/aruba/compare/v0.10.2...v0.11.0.pre
1220
+ [0.10.2]: https://github.com/cucumber/aruba/compare/v0.10.1...v0.10.2
1221
+ [0.10.1]: https://github.com/cucumber/aruba/compare/v0.10.0...v0.10.1
1222
+ [0.10.0]: https://github.com/cucumber/aruba/compare/v0.10.0.pre2...v0.10.0
1223
+ [0.10.0.pre2]: https://github.com/cucumber/aruba/compare/v0.10.0.pre...v0.10.0.pre2
1224
+ [0.10.0.pre]: https://github.com/cucumber/aruba/compare/v0.9.0...v0.10.0
1225
+ [0.9.0]: https://github.com/cucumber/aruba/compare/v0.9.0.pre2...v0.9.0
1226
+ [0.9.0.pre2]: https://github.com/cucumber/aruba/compare/v0.9.0.pre...v0.9.0.pre2
1227
+ [0.9.0.pre]: https://github.com/cucumber/aruba/compare/v0.8.1...v0.9.0.pre
1228
+ [0.8.1]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.1
1229
+ [0.8.0]: https://github.com/cucumber/aruba/compare/v0.8.0.pre3...v0.8.0
1230
+ [0.8.0.pre3]: https://github.com/cucumber/aruba/compare/v0.8.0.pre2...v0.8.0.pre3
1231
+ [0.8.0.pre2]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.0.pre2
1232
+ [0.8.0.pre]: https://github.com/cucumber/aruba/compare/v0.7.4...v0.8.0.pre
1233
+ [0.7.4]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.4
1234
+ [0.7.3]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.3
1235
+ [0.7.2]: https://github.com/cucumber/aruba/compare/v0.7.1...v0.7.2
1236
+ [0.7.1]: https://github.com/cucumber/aruba/compare/v0.7.0...v0.7.1
1237
+ [0.7.0]: https://github.com/cucumber/aruba/compare/v0.6.2...v0.7.0
1238
+ [0.6.2]: https://github.com/cucumber/aruba/compare/v0.6.1...v0.6.2
1239
+ [0.6.1]: https://github.com/cucumber/aruba/compare/v0.6.0...v0.6.1
1240
+ [0.6.0]: https://github.com/cucumber/aruba/compare/v0.5.4...v0.6.0
1241
+ [0.5.4]: https://github.com/cucumber/aruba/compare/v0.5.3...v0.5.4
1242
+ [0.5.3]: https://github.com/cucumber/aruba/compare/v0.5.2...v0.5.3
1243
+ [0.5.2]: https://github.com/cucumber/aruba/compare/v0.5.1...v0.5.2
1244
+ [0.5.1]: https://github.com/cucumber/aruba/compare/v0.5.0...v0.5.1
1245
+ [0.5.0]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.5.0
1246
+ [0.4.11]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.4.11
1247
+ [0.4.10]: https://github.com/cucumber/aruba/compare/v0.4.9...v0.4.10
1248
+ [0.4.9]: https://github.com/cucumber/aruba/compare/v0.4.8...v0.4.9
1249
+ [0.4.8]: https://github.com/cucumber/aruba/compare/v0.4.7...v0.4.8
1250
+ [0.4.7]: https://github.com/cucumber/aruba/compare/v0.4.6...v0.4.7
1251
+ [0.4.6]: https://github.com/cucumber/aruba/compare/v0.4.5...v0.4.6
1252
+ [0.4.5]: https://github.com/cucumber/aruba/compare/v0.4.4...v0.4.5
1253
+ [0.4.4]: https://github.com/cucumber/aruba/compare/v0.4.3...v0.4.4
1254
+ [0.4.3]: https://github.com/cucumber/aruba/compare/v0.4.2...v0.4.3
1255
+ [0.4.2]: https://github.com/cucumber/aruba/compare/v0.4.1...v0.4.2
1256
+ [0.4.1]: https://github.com/cucumber/aruba/compare/v0.4.0...v0.4.1
1257
+ [0.4.0]: https://github.com/cucumber/aruba/compare/v0.3.7...v0.4.0
1258
+ [0.3.7]: https://github.com/cucumber/aruba/compare/v0.3.6...v0.3.7
1259
+ [0.3.6]: https://github.com/cucumber/aruba/compare/v0.3.5...v0.3.6
1260
+ [0.3.5]: https://github.com/cucumber/aruba/compare/v0.3.4...v0.3.5
1261
+ [0.3.4]: https://github.com/cucumber/aruba/compare/v0.3.3...v0.3.4
1262
+ [0.3.3]: https://github.com/cucumber/aruba/compare/v0.3.2...v0.3.3
1263
+ [0.3.2]: https://github.com/cucumber/aruba/compare/v0.3.1...v0.3.2
1264
+ [0.3.1]: https://github.com/cucumber/aruba/compare/v0.3.0...v0.3.1
1265
+ [0.3.0]: https://github.com/cucumber/aruba/compare/v0.2.8...v0.3.0
1266
+ [0.2.8]: https://github.com/cucumber/aruba/compare/v0.2.7...v0.2.8
1267
+ [0.2.7]: https://github.com/cucumber/aruba/compare/v0.2.6...v0.2.7
1268
+ [0.2.6]: https://github.com/cucumber/aruba/compare/v0.2.5...v0.2.6
1269
+ [0.2.5]: https://github.com/cucumber/aruba/compare/v0.2.4...v0.2.5
1270
+ [0.2.4]: https://github.com/cucumber/aruba/compare/v0.2.3...v0.2.4
1271
+ [0.2.3]: https://github.com/cucumber/aruba/compare/v0.2.2...v0.2.3
1272
+ [0.2.2]: https://github.com/cucumber/aruba/compare/v0.2.1...v0.2.2
1273
+ [0.2.1]: https://github.com/cucumber/aruba/compare/v0.2.0...v0.2.1
1274
+ [0.2.0]: https://github.com/cucumber/aruba/compare/v0.1.9...v0.2.0
1275
+ [0.1.9]: https://github.com/cucumber/aruba/compare/v0.1.8...v0.1.9
1276
+ [0.1.8]: https://github.com/cucumber/aruba/compare/v0.1.7...v0.1.8
1277
+ [0.1.7]: https://github.com/cucumber/aruba/compare/v0.1.6...v0.1.7
1278
+ [0.1.6]: https://github.com/cucumber/aruba/compare/v0.1.5...v0.1.6
1279
+ [0.1.5]: https://github.com/cucumber/aruba/compare/v0.1.4...v0.1.5
1280
+ [0.1.4]: https://github.com/cucumber/aruba/compare/v0.1.3...v0.1.4
1281
+ [0.1.3]: https://github.com/cucumber/aruba/compare/v0.1.2...v0.1.3
1282
+ [0.1.2]: https://github.com/cucumber/aruba/compare/v0.1.1...v0.1.2
1283
+ [0.1.1]: https://github.com/cucumber/aruba/compare/v0.1.0...v0.1.1
1284
+ [0.1.0]: https://github.com/cucumber/aruba/compare/ed6a175d23aaff62dbf355706996f276f304ae8b...v0.1.1
918
1285
 
919
1286
  <!-- Other links -->
920
1287
 
921
1288
  [1]: http://semver.org
922
- [2]: http://keepachangelog.com)
1289
+ [2]: http://keepachangelog.com
923
1290
  [3]: https://github.com/cucumber/aruba/blob/master/CONTRIBUTING.md