aruba 0.14.10 → 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 (299) 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 -181
  8. data/.rubocop_todo.yml +262 -0
  9. data/.simplecov +7 -5
  10. data/.travis.yml +53 -25
  11. data/.yardopts +3 -0
  12. data/CHANGELOG.md +585 -248
  13. data/CONTRIBUTING.md +247 -45
  14. data/Dockerfile +67 -0
  15. data/Gemfile +5 -106
  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 +1 -1
  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 -7
  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/getting-started-app/Gemfile +1 -1
  40. data/lib/aruba/api/commands.rb +85 -143
  41. data/lib/aruba/api/core.rb +48 -41
  42. data/lib/aruba/api/environment.rb +16 -7
  43. data/lib/aruba/api/filesystem.rb +43 -30
  44. data/lib/aruba/api/text.rb +3 -9
  45. data/lib/aruba/api.rb +6 -11
  46. data/lib/aruba/aruba_path.rb +27 -89
  47. data/lib/aruba/basic_configuration.rb +4 -24
  48. data/lib/aruba/cli.rb +1 -1
  49. data/lib/aruba/command.rb +2 -0
  50. data/lib/aruba/config/jruby.rb +1 -1
  51. data/lib/aruba/config_wrapper.rb +1 -1
  52. data/lib/aruba/configuration.rb +92 -0
  53. data/lib/aruba/console/help.rb +1 -7
  54. data/lib/aruba/console.rb +5 -5
  55. data/lib/aruba/contracts/absolute_path.rb +2 -2
  56. data/lib/aruba/contracts/relative_path.rb +2 -2
  57. data/lib/aruba/cucumber/command.rb +136 -95
  58. data/lib/aruba/cucumber/environment.rb +1 -1
  59. data/lib/aruba/cucumber/file.rb +21 -23
  60. data/lib/aruba/cucumber/hooks.rb +18 -13
  61. data/lib/aruba/cucumber/testing_frameworks.rb +74 -50
  62. data/lib/aruba/cucumber.rb +0 -6
  63. data/lib/aruba/event_bus/name_resolver.rb +5 -16
  64. data/lib/aruba/hooks.rb +1 -1
  65. data/lib/aruba/in_config_wrapper.rb +5 -1
  66. data/lib/aruba/initializer.rb +36 -42
  67. data/lib/aruba/matchers/base/base_matcher.rb +2 -2
  68. data/lib/aruba/matchers/base/message_indenter.rb +19 -0
  69. data/lib/aruba/matchers/base/object_formatter.rb +2 -9
  70. data/lib/aruba/matchers/collection/include_an_object.rb +7 -9
  71. data/lib/aruba/matchers/command/be_successfully_executed.rb +6 -4
  72. data/lib/aruba/matchers/command/have_exit_status.rb +14 -4
  73. data/lib/aruba/matchers/command/have_finished_in_time.rb +3 -5
  74. data/lib/aruba/matchers/command/have_output.rb +10 -5
  75. data/lib/aruba/matchers/command/have_output_on_stderr.rb +2 -2
  76. data/lib/aruba/matchers/command/have_output_on_stdout.rb +2 -2
  77. data/lib/aruba/matchers/command/have_output_size.rb +2 -2
  78. data/lib/aruba/matchers/directory/be_an_existing_directory.rb +5 -7
  79. data/lib/aruba/matchers/directory/have_sub_directory.rb +4 -6
  80. data/lib/aruba/matchers/file/be_a_command_found_in_path.rb +2 -4
  81. data/lib/aruba/matchers/file/be_an_existing_executable.rb +4 -6
  82. data/lib/aruba/matchers/file/be_an_existing_file.rb +5 -7
  83. data/lib/aruba/matchers/file/have_file_content.rb +4 -4
  84. data/lib/aruba/matchers/file/have_file_size.rb +6 -8
  85. data/lib/aruba/matchers/file/have_same_file_content.rb +5 -8
  86. data/lib/aruba/matchers/path/a_path_matching_pattern.rb +2 -4
  87. data/lib/aruba/matchers/path/be_an_absolute_path.rb +3 -5
  88. data/lib/aruba/matchers/path/be_an_existing_path.rb +4 -6
  89. data/lib/aruba/matchers/path/have_permissions.rb +6 -8
  90. data/lib/aruba/matchers/string/include_output_string.rb +8 -10
  91. data/lib/aruba/matchers/string/match_output_string.rb +9 -11
  92. data/lib/aruba/matchers/string/output_string_eq.rb +8 -10
  93. data/lib/aruba/platform.rb +0 -8
  94. data/lib/aruba/platforms/announcer.rb +42 -79
  95. data/lib/aruba/platforms/aruba_file_creator.rb +2 -6
  96. data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +2 -2
  97. data/lib/aruba/platforms/aruba_logger.rb +23 -7
  98. data/lib/aruba/platforms/command_monitor.rb +12 -104
  99. data/lib/aruba/platforms/determine_disk_usage.rb +56 -14
  100. data/lib/aruba/platforms/filesystem_status.rb +10 -14
  101. data/lib/aruba/platforms/local_environment.rb +2 -2
  102. data/lib/aruba/platforms/simple_table.rb +3 -11
  103. data/lib/aruba/platforms/unix_command_string.rb +7 -11
  104. data/lib/aruba/platforms/unix_environment_variables.rb +18 -27
  105. data/lib/aruba/platforms/unix_platform.rb +20 -51
  106. data/lib/aruba/platforms/unix_which.rb +2 -1
  107. data/lib/aruba/platforms/windows_command_string.rb +15 -10
  108. data/lib/aruba/platforms/windows_environment_variables.rb +43 -44
  109. data/lib/aruba/platforms/windows_platform.rb +4 -0
  110. data/lib/aruba/platforms/windows_which.rb +4 -3
  111. data/lib/aruba/processes/basic_process.rb +28 -30
  112. data/lib/aruba/processes/debug_process.rb +12 -3
  113. data/lib/aruba/processes/in_process.rb +17 -8
  114. data/lib/aruba/processes/spawn_process.rb +40 -41
  115. data/lib/aruba/rspec.rb +14 -36
  116. data/lib/aruba/runtime.rb +3 -6
  117. data/lib/aruba/setup.rb +6 -6
  118. data/lib/aruba/tasks/docker_helpers.rb +154 -0
  119. data/lib/aruba/version.rb +1 -1
  120. metadata +190 -236
  121. data/features/.nav +0 -72
  122. data/features/01_getting_started_with_aruba/cleanup_working_directory.feature +0 -57
  123. data/features/01_getting_started_with_aruba/run_commands.feature +0 -217
  124. data/features/01_getting_started_with_aruba/supported_testing_frameworks.feature +0 -88
  125. data/features/02_configure_aruba/activate_announcer_on_command_failure.feature +0 -38
  126. data/features/02_configure_aruba/basics.feature +0 -151
  127. data/features/02_configure_aruba/command_runtime_environment.feature +0 -129
  128. data/features/02_configure_aruba/console_history_file.feature +0 -38
  129. data/features/02_configure_aruba/exit_timeout.feature +0 -60
  130. data/features/02_configure_aruba/fixtures_directories.feature +0 -38
  131. data/features/02_configure_aruba/fixtures_path_prefix.feature +0 -23
  132. data/features/02_configure_aruba/home_directory.feature +0 -80
  133. data/features/02_configure_aruba/io_timeout.feature +0 -30
  134. data/features/02_configure_aruba/keep_ansi.feature +0 -30
  135. data/features/02_configure_aruba/log_level.feature +0 -38
  136. data/features/02_configure_aruba/physical_block_size.feature +0 -53
  137. data/features/02_configure_aruba/remove_ansi_escape_sequences.feature +0 -38
  138. data/features/02_configure_aruba/root_directory.feature +0 -30
  139. data/features/02_configure_aruba/startup_wait_time.feature +0 -48
  140. data/features/02_configure_aruba/working_directory.feature +0 -38
  141. data/features/03_testing_frameworks/cucumber/announce_information_for_troubleshooting.feature +0 -263
  142. data/features/03_testing_frameworks/cucumber/disable_bunder.feature +0 -18
  143. data/features/03_testing_frameworks/cucumber/steps/command/check_for_exit_statuses.feature +0 -136
  144. data/features/03_testing_frameworks/cucumber/steps/command/check_output_of_command.feature +0 -514
  145. data/features/03_testing_frameworks/cucumber/steps/command/check_stderr_of_command.feature +0 -68
  146. data/features/03_testing_frameworks/cucumber/steps/command/check_stdout_of_command.feature +0 -109
  147. data/features/03_testing_frameworks/cucumber/steps/command/debug_your_command_in_aruba.feature +0 -92
  148. data/features/03_testing_frameworks/cucumber/steps/command/run_a_command.feature +0 -66
  149. data/features/03_testing_frameworks/cucumber/steps/command/run_command_in_process.feature +0 -485
  150. data/features/03_testing_frameworks/cucumber/steps/command/run_command_interactively.feature +0 -90
  151. data/features/03_testing_frameworks/cucumber/steps/command/run_commands_which_require_a_shell.feature +0 -79
  152. data/features/03_testing_frameworks/cucumber/steps/command/send_signal_to_command.feature +0 -83
  153. data/features/03_testing_frameworks/cucumber/steps/command/stop_command.feature +0 -285
  154. data/features/03_testing_frameworks/cucumber/steps/environment/append_environment_variable.feature +0 -52
  155. data/features/03_testing_frameworks/cucumber/steps/environment/modify_home_variable_for_testing.feature +0 -62
  156. data/features/03_testing_frameworks/cucumber/steps/environment/prepend_environment_variable.feature +0 -52
  157. data/features/03_testing_frameworks/cucumber/steps/environment/set_environment_variable.feature +0 -49
  158. data/features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature +0 -45
  159. data/features/03_testing_frameworks/cucumber/steps/filesystem/cd_to_directory.feature +0 -33
  160. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_directory.feature +0 -57
  161. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature +0 -43
  162. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_file_content.feature +0 -143
  163. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_non_existence_of_directory.feature +0 -69
  164. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_non_existence_of_file.feature +0 -80
  165. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_permissions_of_file.feature +0 -39
  166. data/features/03_testing_frameworks/cucumber/steps/filesystem/compare_files.feature +0 -42
  167. data/features/03_testing_frameworks/cucumber/steps/filesystem/copy_file_or_directory.feature +0 -45
  168. data/features/03_testing_frameworks/cucumber/steps/filesystem/create_directory.feature +0 -57
  169. data/features/03_testing_frameworks/cucumber/steps/filesystem/create_file.feature +0 -76
  170. data/features/03_testing_frameworks/cucumber/steps/filesystem/move_file_or_directory.feature +0 -44
  171. data/features/03_testing_frameworks/cucumber/steps/filesystem/overwrite_file.feature +0 -72
  172. data/features/03_testing_frameworks/cucumber/steps/filesystem/remove_directory.feature +0 -38
  173. data/features/03_testing_frameworks/cucumber/steps/filesystem/remove_file.feature +0 -38
  174. data/features/03_testing_frameworks/cucumber/steps/filesystem/use_fixtures_for_setup_test.feature +0 -77
  175. data/features/03_testing_frameworks/rspec/hooks/define_after_hook_for_commands.feature +0 -43
  176. data/features/03_testing_frameworks/rspec/hooks/define_before_hook_for_commands.feature +0 -71
  177. data/features/03_testing_frameworks/rspec/setup_aruba_for_rspec.feature +0 -179
  178. data/features/04_aruba_api/command/find_a_started_command.feature +0 -83
  179. data/features/04_aruba_api/command/find_command_in_PATH.feature +0 -37
  180. data/features/04_aruba_api/command/read_stderr_of_command.feature +0 -46
  181. data/features/04_aruba_api/command/read_stdout_of_command.feature +0 -46
  182. data/features/04_aruba_api/command/run_command.feature +0 -423
  183. data/features/04_aruba_api/command/run_simple.feature +0 -254
  184. data/features/04_aruba_api/command/send_signal_to_command.feature +0 -53
  185. data/features/04_aruba_api/command/stop_all_commands.feature +0 -57
  186. data/features/04_aruba_api/command/stop_single_command.feature +0 -132
  187. data/features/04_aruba_api/command/terminate_all_commands.feature +0 -57
  188. data/features/04_aruba_api/command/use_last_command_started.feature +0 -50
  189. data/features/04_aruba_api/command/use_last_command_stopped.feature +0 -89
  190. data/features/04_aruba_api/core/expand_path.feature +0 -88
  191. data/features/04_aruba_api/environment/append_environment_variable.feature +0 -128
  192. data/features/04_aruba_api/environment/delete_environment_variable.feature +0 -63
  193. data/features/04_aruba_api/environment/prepend_environment_variable.feature +0 -128
  194. data/features/04_aruba_api/environment/set_environment_variable.feature +0 -376
  195. data/features/04_aruba_api/filesystem/cd_to_directory.feature +0 -184
  196. data/features/04_aruba_api/filesystem/check_existence_file_or_directory.feature +0 -62
  197. data/features/04_aruba_api/filesystem/check_if_path_is_absolute.feature +0 -48
  198. data/features/04_aruba_api/filesystem/check_if_path_is_directory.feature +0 -53
  199. data/features/04_aruba_api/filesystem/check_if_path_is_file.feature +0 -54
  200. data/features/04_aruba_api/filesystem/check_if_path_is_relative.feature +0 -48
  201. data/features/04_aruba_api/filesystem/create_directory.feature +0 -57
  202. data/features/04_aruba_api/filesystem/move_file_or_directory.feature +0 -119
  203. data/features/04_aruba_api/filesystem/report_disk_usage.feature +0 -152
  204. data/features/04_aruba_api/filesystem/use_fixtures.feature +0 -104
  205. data/features/04_aruba_api/text/extract_text.feature +0 -87
  206. data/features/04_aruba_api/text/replace_variables.feature +0 -45
  207. data/features/04_aruba_api/text/sanitize_text.feature +0 -228
  208. data/features/04_aruba_api/text/unescape_text.feature +0 -127
  209. data/features/05_use_rspec_matchers/command/check_timeouts.feature +0 -48
  210. data/features/05_use_rspec_matchers/directory/have_sub_directory.feature +0 -110
  211. data/features/05_use_rspec_matchers/file/be_a_command_found_in_path.feature +0 -115
  212. data/features/05_use_rspec_matchers/file/be_existing_executable.feature +0 -88
  213. data/features/05_use_rspec_matchers/file/be_existing_file.feature +0 -82
  214. data/features/05_use_rspec_matchers/file/have_file_content.feature +0 -123
  215. data/features/05_use_rspec_matchers/file/have_file_size.feature +0 -107
  216. data/features/05_use_rspec_matchers/path/be_an_absolute_path.feature +0 -74
  217. data/features/05_use_rspec_matchers/path/be_an_existing_path.feature +0 -97
  218. data/features/05_use_rspec_matchers/path/have_permissions.feature +0 -118
  219. data/features/06_use_aruba_cli/initialize_project_with_aruba.feature +0 -79
  220. data/features/06_use_aruba_cli/open_console.feature +0 -52
  221. data/features/08_other/improve_performance_if_using_jruby.feature +0 -37
  222. data/features/step_definitions/hooks.rb +0 -146
  223. data/features/support/aruba.rb +0 -7
  224. data/features/support/env.rb +0 -33
  225. data/features/support/jruby.rb +0 -5
  226. data/features/support/simplecov_setup.rb +0 -11
  227. data/fixtures/spawn_process/stderr.sh +0 -3
  228. data/lib/aruba/api/deprecated.rb +0 -1163
  229. data/lib/aruba/config.rb +0 -107
  230. data/lib/aruba/cucumber/core.rb +0 -5
  231. data/lib/aruba/cucumber/deprecated.rb +0 -93
  232. data/lib/aruba/cucumber/rvm.rb +0 -3
  233. data/lib/aruba/in_process.rb +0 -16
  234. data/lib/aruba/jruby.rb +0 -4
  235. data/lib/aruba/matchers/deprecated/file.rb +0 -17
  236. data/lib/aruba/matchers/deprecated.rb +0 -1
  237. data/lib/aruba/matchers/path/match_path_pattern.rb +0 -41
  238. data/lib/aruba/matchers/rspec_matcher_include_regexp.rb +0 -25
  239. data/lib/aruba/platforms/disk_usage_calculator.rb +0 -20
  240. data/lib/aruba/reporting.rb +0 -126
  241. data/lib/aruba/spawn_process.rb +0 -14
  242. data/script/bootstrap +0 -24
  243. data/script/console +0 -16
  244. data/script/test +0 -3
  245. data/spec/aruba/api/bundler_spec.rb +0 -15
  246. data/spec/aruba/api/core_spec.rb +0 -142
  247. data/spec/aruba/api/deprecated_spec.rb +0 -421
  248. data/spec/aruba/api/filesystem_spec.rb +0 -746
  249. data/spec/aruba/api/runtime_spec.rb +0 -28
  250. data/spec/aruba/api_spec.rb +0 -97
  251. data/spec/aruba/aruba_path_spec.rb +0 -103
  252. data/spec/aruba/basic_configuration_spec.rb +0 -5
  253. data/spec/aruba/configuration_spec.rb +0 -5
  254. data/spec/aruba/hooks_spec.rb +0 -17
  255. data/spec/aruba/in_config_wrapper_spec.rb +0 -25
  256. data/spec/aruba/jruby_spec.rb +0 -73
  257. data/spec/aruba/matchers/command/have_output_size_spec.rb +0 -25
  258. data/spec/aruba/matchers/command_spec.rb +0 -174
  259. data/spec/aruba/matchers/deprecated_spec.rb +0 -120
  260. data/spec/aruba/matchers/directory_spec.rb +0 -57
  261. data/spec/aruba/matchers/file_spec.rb +0 -208
  262. data/spec/aruba/matchers/path_spec.rb +0 -58
  263. data/spec/aruba/platform/simple_table_spec.rb +0 -23
  264. data/spec/aruba/platform/windows_environment_variables_spec.rb +0 -500
  265. data/spec/aruba/platforms/unix_command_string_spec.rb +0 -17
  266. data/spec/aruba/platforms/windows_command_string_spec.rb +0 -22
  267. data/spec/aruba/processes/spawn_process_spec.rb +0 -112
  268. data/spec/aruba/rspec_spec.rb +0 -15
  269. data/spec/aruba/runtime_spec.rb +0 -29
  270. data/spec/event_bus/name_resolver_spec.rb +0 -68
  271. data/spec/event_bus_spec.rb +0 -158
  272. data/spec/spec_helper.rb +0 -22
  273. data/spec/support/configs/.keep +0 -0
  274. data/spec/support/configs/aruba.rb +0 -5
  275. data/spec/support/configs/pry.rb +0 -3
  276. data/spec/support/configs/rspec.rb +0 -15
  277. data/spec/support/helpers/.keep +0 -0
  278. data/spec/support/helpers/reporting.rb +0 -44
  279. data/spec/support/matchers/.keep +0 -0
  280. data/spec/support/matchers/option.rb +0 -35
  281. data/spec/support/shared_contexts/.keep +0 -0
  282. data/spec/support/shared_contexts/aruba.rb +0 -49
  283. data/spec/support/shared_examples/.keep +0 -0
  284. data/spec/support/shared_examples/configuration.rb +0 -116
  285. data/spec/support/shared_examples/directory.rb +0 -7
  286. data/spec/support/shared_examples/file.rb +0 -7
  287. data/templates/css/console.css +0 -24
  288. data/templates/css/filesystem.css +0 -42
  289. data/templates/css/pygments-autumn.css +0 -59
  290. data/templates/files.erb +0 -14
  291. data/templates/images/LICENSE +0 -22
  292. data/templates/images/folder.png +0 -0
  293. data/templates/images/page_white.png +0 -0
  294. data/templates/images/page_white_gherkin.png +0 -0
  295. data/templates/images/page_white_ruby.png +0 -0
  296. data/templates/index.erb +0 -20
  297. data/templates/js/filesystem.js +0 -5
  298. data/templates/js/jquery-1.11.3.min.js +0 -5
  299. data/templates/main.erb +0 -34
data/CHANGELOG.md CHANGED
@@ -2,11 +2,252 @@
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.10]
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]
10
251
 
11
252
  * Backport replacement of problematic AnsiColor module with simple
12
253
  implementation ([#642])
@@ -24,13 +265,13 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
24
265
  * Reorganize spec files to match master branch ([#603])
25
266
  * Reorganize feature files to match master branch ([#602])
26
267
 
27
- ## [v0.14.9]
268
+ ## [0.14.9]
28
269
 
29
270
  * Formally deprecate `#use_clean_gemset` ([#597])
30
271
  * Improve deprecation messages ([#601])
31
272
  * Do not replace entire environment inside `#cd` block ([#604])
32
273
 
33
- ## [v0.14.8]
274
+ ## [0.14.8]
34
275
 
35
276
  * Deprecate `#run` and `#run_simple` in favor of `#run_command` and
36
277
  `#run_command_and_stop` ([#585])
@@ -39,54 +280,54 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
39
280
  * Properly warn about deprecated use of the run methods with one positional
40
281
  option ([#588])
41
282
 
42
- ## [v0.14.7]
283
+ ## [0.14.7]
43
284
 
44
285
  * Fix Cucumber steps to use `have_same_file_content_as` matcher ([#572])
45
286
  * Update dependencies, most notably loosening the dependency on `ffi` ([#581])
46
287
 
47
- ## [v0.14.6]
288
+ ## [0.14.6]
48
289
 
49
290
  * Document and fix `@disable-bundler` hook ([#561])
50
291
  * Deprecate `have_same_file_content_like` and `a_file_with_same_content_like`
51
292
  in favor of `have_same_file_content_as` and `a_file_with_same_content_as` ([#557])
52
293
 
53
- ## [v0.14.5]
294
+ ## [0.14.5]
54
295
 
55
296
  * Loosen dependency on child_process ([#551])
56
297
 
57
- ## [v0.14.4]
298
+ ## [0.14.4]
58
299
 
59
300
  * Fix command spawning when run in directories with spaces ([#490])
60
301
  * Ensure setup is still done when using `@no-clobber` ([#529])
61
302
  * Make `#expand_path` handle absolute paths correctly ([#486])
62
303
 
63
- ## [v0.14.3]
304
+ ## [0.14.3]
64
305
 
65
306
  * Fix path bug ([#422])
66
307
  * Ensure non-deprecated methods do not use deprecated methods ([#489])
67
308
  * Update dependency on childprocess ([#516])
68
309
  * Fix encoding output on JRuby ([#516])
69
310
 
70
- ## [v0.14.2]
311
+ ## [0.14.2]
71
312
 
72
- * Handle empty JRUBY_OPTS on JRuby
313
+ * Handle empty `JRUBY_OPTS` on JRuby
73
314
 
74
- ## [v0.14.1]
315
+ ## [0.14.1]
75
316
 
76
317
  * Fixed bug in framework step
77
318
 
78
- ## [v0.14.0]
319
+ ## [0.14.0]
79
320
 
80
321
  * Add `<project_root>/exe` to search path for commands: This is the new default
81
322
  if you setup a project with bundler.
82
323
  * Add some more steps to modify environment
83
324
 
84
- ## [v0.13.0]
325
+ ## [0.13.0]
85
326
 
86
327
  * Add two new hooks for rspec and cucumber to make troubleshooting feature
87
328
  files easier ([#338]):
88
- * command_content: Outputs command content - helpful for scripts
89
- * 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,
90
331
  atime, mtime
91
332
  * Add generator to create ad hoc script file ([#323], [AdrieanKhisbe])
92
333
  * Colored announcer output similar to the color of `cucumber` tags: cyan
@@ -95,40 +336,40 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
95
336
  * Refactorings to internal `#simple_table`-method (internal)
96
337
  * Refactored Announcer, now it supports blocks for announce as well (internal)
97
338
  * Fix circular require warnings ([#339])
98
- * Fix use of old instances variable "@io_wait" ([#341]). Now the
99
- 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.
100
341
  * Make it possible to announce information on command error, using a new option
101
342
  called `activate_announcer_on_command_failure` ([#335], [njam])
102
343
  * Re-integrate `event-bus`-library into `aruba`-core ([#342])
103
344
 
104
- ## [v0.12.0]
345
+ ## [0.12.0]
105
346
 
106
347
  * Add matcher to check if a command can be found in PATH ([#336])
107
348
  * Fixed issue with environment variables set by external libraries ([#321], [#320])
108
349
 
109
- ## [v0.11.2]
350
+ ## [0.11.2]
110
351
 
111
352
  * Fixed problem with positional arguments in `#run_simple()` ([#322])
112
353
 
113
- ## [v0.11.1]
354
+ ## [0.11.1]
114
355
 
115
356
  * Use fixed version of event-bus
116
357
  * Refactored and improved documentation (feature tests) in [#309]
117
358
 
118
- ## [v0.11.0]
359
+ ## [0.11.0]
119
360
 
120
361
  * Accidently pushed to rubygems.org - yanked it afterwards
121
362
 
122
- ## [v0.11.0.pre4]
363
+ ## [0.11.0.pre4]
123
364
 
124
365
  * Fixed syntax for Hash on ruby 1.8.7
125
366
  * Reorder rubies in .travis.yml
126
367
 
127
- ## [v0.11.0.pre3]
368
+ ## [0.11.0.pre3]
128
369
 
129
370
  * Fixed syntax for proc on ruby 1.8.7
130
371
 
131
- ## [v0.11.0.pre2]
372
+ ## [0.11.0.pre2]
132
373
 
133
374
  * Integrate `EventBus` to decouple announcers from starting, stopping commands
134
375
  etc. This uses nearly the same implementation like `cucumber`. ([#309])
@@ -147,14 +388,14 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
147
388
  * Added `be_an_executable` matcher
148
389
 
149
390
 
150
- ## [v0.11.0.pre]
391
+ ## [0.11.0.pre]
151
392
 
152
393
  * Set stop signal which should be used to stop a process after a timeout or
153
394
  used to terminate a process. This can be used to stop processes running
154
395
  docker + "systemd". If you send a systemd-enable container SIGINT it will be
155
396
  stopped.
156
397
  * Added a configurable amount of time after a command was started -
157
- 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
158
399
  startup when you run in background and want to sent it a signal.
159
400
  * Replace `<variable>` in commandline, e.g. `<pid-last-command-started>`
160
401
  [experimental]
@@ -164,50 +405,51 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
164
405
  * `rvm`-methods are deprecated. They are too ruby specific.
165
406
 
166
407
 
167
- ## [v0.10.2]
408
+ ## [0.10.2]
168
409
 
169
410
  * Fixed problem in regex after merge of step definitions
170
411
 
171
412
 
172
- ## [v0.10.1]
413
+ ## [0.10.1]
173
414
 
174
415
  * Merged remove steps for file and directory from 4 into 2 step definitions
175
416
 
176
417
 
177
- ## [v0.10.0]
418
+ ## [0.10.0]
178
419
 
179
- * Fix '"#exit_timeout" is deprecated' error ([#314])
420
+ * Fix `"#exit_timeout" is deprecated` error ([#314])
180
421
 
181
- ## [v0.10.0.pre2]
422
+ ## [0.10.0.pre2]
182
423
 
183
424
  * Take over code from `RSpec::Support::ObjectFormatter` since `rspec-support`
184
425
  is not intended for public use.
185
426
 
186
- ## [v0.10.0.pre]
427
+ ## [0.10.0.pre]
187
428
 
188
429
  * Add some new steps to make writing documentation easier using "cucumber",
189
430
  "rspec", "minitest" together with "aruba" - see [Feature](features/getting_started/supported_testing_frameworks.feature)
190
431
  for some examples
191
- * 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))
192
434
  * Refactored API of cucumber steps to reduce the need for more methods and make
193
435
  it easier for users to write their own steps ([#306])
194
436
  * Added `aruba init` to the cli command to setup environment for aruba (issue
195
437
  [#308])
196
438
  * Added new method `delete_environment_variable` to remove environment variable
197
439
  * Added work around because of method name conflict between Capybara and RSpec
198
- (https://github.com/cucumber/aruba/commit/1939c4049d5195ffdd967485f50119bdd86e98a0)
440
+ ([1939c404](https://github.com/cucumber/aruba/commit/1939c4049d5195ffdd967485f50119bdd86e98a0))
199
441
 
200
442
 
201
- ## [v0.9.0]
443
+ ## [0.9.0]
202
444
 
203
445
  * Fix feature test
204
446
  * Fix ordering in console
205
447
  * Fix bug in console handling SIGINT
206
448
  * Deprecated Aruba/Reporting before we remove it
207
449
 
208
- ## [v0.9.0.pre2]
450
+ ## [0.9.0.pre2]
209
451
 
210
- * 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
211
453
  information, if a command produces a lot of output
212
454
  * Added new matcher `#all_objects` to check if an object is included + an error
213
455
  message for failures which is similar to the `#all`-matcher of `RSpec`
@@ -226,38 +468,38 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
226
468
  kill all sub-processes more reliably
227
469
 
228
470
 
229
- ## [v0.9.0.pre]
471
+ ## [0.9.0.pre]
230
472
 
231
473
  * Improve documentation for filesystem api and move it to feature tests
232
474
  * Add logger to aruba. Its output can be captured by rspec.
233
- * Fix incorrect deprecation message for check_file_presence ([#292])
475
+ * Fix incorrect deprecation message for `check_file_presence` ([#292])
234
476
  * Fix for Gemfile excludes windows for many gems ([#282])
235
477
  * Make feature tests compatible with ruby 1.9.2
236
478
  * Gather disk usage for file(s) ([#294])
237
- * Replace keep_ansi-config option by remove_ansi_escape_sequences-option
479
+ * Replace `keep_ansi` config option by `remove_ansi_escape_sequences` option
238
480
  * Split up `#unescape` into `#extract_text` and `#unescape_text`
239
481
  * Use `UnixPlatform` and `WindowsPlatform` to make code for different platforms
240
482
  maintainable
241
- * Work around `ENV`-bug in `Jruby` buy using `#dup` on `ENV.to_h` ([jruby/jruby#316])
242
- * 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
243
485
  * Work around problems when copying files with `cp` on MRI-ruby 1.9.2
244
- * Add cmd.exe /c for SpawnProcess on Windows ([#302])
486
+ * Add `cmd.exe /c` for SpawnProcess on Windows ([#302])
245
487
  * Split up `#which` for Windows and Unix/Linux ([#304])
246
- * Add `aruba console`-command to play around with aruba ([#305])
488
+ * Add `aruba console` command to play around with aruba ([#305])
247
489
 
248
490
 
249
- ## [v0.8.1]
491
+ ## [0.8.1]
250
492
 
251
493
  * Fix problem if working directory of aruba does not exist ([#286])
252
- * Re-Add removed method only_processes
494
+ * Re-add removed method `only_processes`
253
495
  * Fixed problem with last exit status
254
496
  * Added appveyor to run tests of aruba on Windows ([#287])
255
497
  * Make the home directory configurable and use Around/around-hook to apply it
256
498
  * Add announcer to output the full environment before a command is run
257
- * Use prepend_environment_variable to modify PATH for rspec integration
258
- * 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
259
501
 
260
- ## [v0.8.0]
502
+ ## [0.8.0]
261
503
 
262
504
  * Build with cucumber 1.3.x on ruby 1.8.7, with cucumber 2.x on all other platforms
263
505
  * Fixed bugs in aruba's cucumber steps
@@ -267,7 +509,7 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
267
509
  * Fixed selectors for DebugProcess and InProcess to support sub-classes as well
268
510
 
269
511
 
270
- ## [v0.8.0.pre3]
512
+ ## [0.8.0.pre3]
271
513
 
272
514
  * Depend on cucumber 1.3.x for compatibility on ruby 1.8.7
273
515
  * Change PWD and OLDPW when `cd('path') {}` is used within that block
@@ -285,11 +527,11 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
285
527
  * Now each `path/to/dir` pushed to `aruba.current_directory` is `pop`ed as whole
286
528
  * Make testing of `aruba.current_directory` easier by supporting `end_with?` and `start_with?`
287
529
 
288
- ## [v0.8.0.pre2]
530
+ ## [0.8.0.pre2]
289
531
 
290
532
  * Relax requirement on rspec-expectations (3.3 -> 2.11)
291
533
 
292
- ## [v0.8.0.pre]
534
+ ## [0.8.0.pre]
293
535
 
294
536
  * Make aruba compatible with "ruby 1.8.7" and "ruby 1.9.3" again ([#279])
295
537
  * Move more and more documentation to cucumber steps ([#268])
@@ -297,38 +539,39 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
297
539
  * Move Aruba constants to configuration class ([#271])
298
540
  * Added runtime configuration via `aruba.config` which is reset for each test run
299
541
  * Refactored hooks: now there are `after()` and `before()`-hooks, old
300
- before_cmd-hook is still working, but is deprecated, added new
542
+ `before_cmd`-hook is still working, but is deprecated, added new
301
543
  `after(:command)`-hook.
302
544
  * Refactored jruby-startup helper
303
545
  * Cleanup API by moving deprecated methods to separate class
304
- * 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])
305
548
  * Better isolation for environment variable manipulation - really helpful from 1.0.0 on
306
549
  * Move configuration files like `jruby.rb` to `aruba/config/`-directory
307
550
  * Change default exit timeout to 15 seconds to work around long running processes on travis
308
- * Use of instance variables like @aruba_timeout_seconds or
309
- @aruba_io_wait_seconds are deprecated. Use `Aruba.configure do |config|
310
- 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.
311
554
 
312
- ## [v0.7.4]
555
+ ## [0.7.4]
313
556
  * Really Fixed post install message
314
557
 
315
- ## [v0.7.3]
558
+ ## [0.7.3]
316
559
  * Fixed post install message
317
560
 
318
- ## [v0.7.2]
561
+ ## [0.7.2]
319
562
 
320
563
  * Do not trigger Announcer API deprecation warning ([#277])
321
564
 
322
- ## [v0.7.1]
565
+ ## [0.7.1]
323
566
 
324
- * Do not break if @interactive is used
567
+ * Do not break if `@interactive` is used
325
568
 
326
- ## [v0.7.0]
569
+ ## [0.7.0]
327
570
 
328
- * Introducing root_directory ([#232])
571
+ * Introducing `root_directory` ([#232])
329
572
  * Introducing fixtures directory ([#224])
330
573
  * Make sure a file/directory does not exist + Cleanup named file/directory steps ([#234])
331
- * Make matcher have_permisions public and add documentation ([#239])
574
+ * Make matcher `have_permisions` public and add documentation ([#239])
332
575
  * Added matcher for file content ([#238])
333
576
  * Add rspec integrator ([#244])
334
577
  * Deprecate `_file` and `_directory` in method names ([#243])
@@ -338,180 +581,180 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
338
581
  * Refactor announcer to support user defined announce channels (fixes [#267])
339
582
  * `InProcess` requires that the working directory is determined on runtime not no loadtime
340
583
 
341
- ## [v0.6.2]
584
+ ## [0.6.2]
342
585
 
343
586
  * Fixed minor [#223])
344
587
  * Added support for ruby 2.1.3 -- 2.1.5
345
588
  * Added support for comparison to a fixture file
346
589
 
347
- ## [v0.6.1]
590
+ ## [0.6.1]
348
591
 
349
592
  * Added support for ruby 2.1.2
350
- * Added support for ~ expansion
351
- * Added support for with_env
593
+ * Added support for `~` expansion
594
+ * Added support for `with_env`
352
595
 
353
- ## [v0.6.0]
596
+ ## [0.6.0]
354
597
 
355
598
  * Dropped support for ruby 1.8
356
599
  * Added support for ruby 2.1.0 and 2.1.1
357
600
  * Added rspec 3.0.0 support
358
601
 
359
- ## [v0.5.4]
602
+ ## [0.5.4]
360
603
 
361
604
  * Added support for piping in files ([#154], [maxmeyer], dg-vrnetze)
362
605
  * Added cucumber steps for environment variables ([#156], dg-vrnetze)
363
606
  * Added support for file mode ([#157], [maxmeyer], dg-vrnetze)
364
607
 
365
- ## [v0.5.3]
608
+ ## [0.5.3]
366
609
 
367
610
  * Fix for UTF-8 support ([#151], [mattwynne], [jarl-dk])
368
- * Fix for open file leakage ([#150], [jonrowe])
611
+ * Fix for open file leakage ([#150], [JonRowe])
369
612
 
370
- ## [v0.5.2]
613
+ ## [0.5.2]
371
614
 
372
615
  * Plugin API for greater speed. Test Ruby CLI programs in a single Ruby process ([#148], [aslakhellesoy])
373
616
  * Fix memory leak when several commands are executed in a single run ([#144], [y-higuchi])
374
617
 
375
- ## [v0.5.1]
618
+ ## [0.5.1]
376
619
 
377
620
  * Individual timeout settings when running commands ([#124], [jarl-dk])
378
621
  * Varous fixes for JRuby tests, should now work on more versions of JRuby
379
622
 
380
- ## [v0.5.0]
623
+ ## [0.5.0]
381
624
 
382
- * Add #with_file_content to the DSL ([#110], [argent-smith])
625
+ * Add `#with_file_content` to the DSL ([#110], [argent-smith])
383
626
  * Make JRuby performance tweaks optional ([#102], [taylor], [#125], [alindeman])
384
- * Add assert_partial_output_interactive so you can peek at the output from a running process ([#104], [taylor])
385
- * Add assert_not_matching_output ([#111], [argent-smith])
386
- * 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])
387
630
 
388
- ## [v0.4.11]
631
+ ## [0.4.11]
389
632
 
390
633
  * Fix duplicated output ([#91], [robertwahler], [mattwynne])
391
634
  * Fix Gemspec format ([#101], [mattwynne])
392
635
 
393
- ## [v0.4.10]
636
+ ## [0.4.10]
394
637
 
395
638
  * Fix broken JRuby file following rename of hook ([tdreyno])
396
639
  * Add terminate method to API ([taylor])
397
640
 
398
- ## [v0.4.9]
641
+ ## [0.4.9]
399
642
 
400
- * Rename before_run hook to before_cmd ([mattwynne])
643
+ * Rename `before_run` hook to `before_cmd` ([mattwynne])
401
644
  * Fix 1.8.7 compatibility ([#95], [davetron5000])
402
645
 
403
- ## [v0.4.8]
646
+ ## [0.4.8]
404
647
 
405
- * Add before_run hook ([mattwynne])
648
+ * Add `before_run` hook ([mattwynne])
406
649
  * Add JRuby performance tweaks ([#93], [myronmarston], [mattwynne])
407
650
  * Invalid/Corrupt spec file for 0.4.7 - undefined method call for nil:Nilclass ([#47], [aslakhellesoy])
408
651
 
409
- ## [v0.4.7]
652
+ ## [0.4.7]
410
653
 
411
654
  * Remove rdiscount dependency. ([#85], [aslakhellesoy])
412
655
  * Pin to ffi 1.0.9 since 1.0.10 is broken. ([aslakhellesoy])
413
656
  * Added file size specific steps to the Aruba API. ([#89], [hectcastro])
414
657
 
415
- ## [v0.4.6]
658
+ ## [0.4.6]
416
659
 
417
660
  * Upgraded deps to latest gems. ([aslakhellesoy])
418
- * Added Regexp support to Aruba::Api#assert_no_partial_output ([aslakhellesoy])
661
+ * Added Regexp support to `Aruba::Api#assert_no_partial_output`. ([aslakhellesoy])
419
662
 
420
- ## [v0.4.5]
663
+ ## [0.4.5]
421
664
 
422
665
  * Better assertion failure message when an exit code is not as expected.
423
666
  ([mattwynne])
424
667
 
425
- ## [v0.4.4]
668
+ ## [0.4.4]
426
669
 
427
670
  * Fix various bugs with interative processes. ([mattwynne])
428
671
 
429
- ## [v0.4.3]
672
+ ## [0.4.3]
430
673
 
431
674
  * Aruba reporting now creates an index file for reports, linking them all
432
675
  together. ([aslakhellesoy])
433
676
 
434
- ## [v0.4.2]
677
+ ## [0.4.2]
435
678
 
436
679
  * Appending to a file creates the parent directory if it doesn't exist.
437
680
  ([aslakhellesoy])
438
681
 
439
- ## [v0.4.1]
682
+ ## [0.4.1]
440
683
 
441
684
  * Move more logic into Aruba::Api ([aslakhellesoy])
442
685
 
443
- ## [v0.4.0]
686
+ ## [0.4.0]
444
687
 
445
688
  * New, awesome HTML reporting feature that captures everything that happens
446
689
  during a scenario. ([aslakhellesoy])
447
690
  * ANSI escapes from output are stripped by default. Override this with the @ansi
448
691
  tag. ([aslakhellesoy])
449
692
 
450
- ## [v0.3.7]
693
+ ## [0.3.7]
451
694
 
452
- * 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
453
696
  ([greyblake])
454
697
  * Replace announce with puts to comply with cucumber 0.10.6 ([aslakhellesoy])
455
698
  * Fix childprocess STDIN to be synchronous ([#40], [#71], [lithium3141])
456
699
 
457
- ## [v0.3.6]
700
+ ## [0.3.6]
458
701
 
459
- * 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])
460
703
  * Separate hooks and steps to make it easier to build your own steps on top of
461
704
  Aruba's API ([msassak])
462
- * @no-clobber to prevent cleanup before each scenario ([msassak])
705
+ * `@no-clobber` to prevent cleanup before each scenario ([msassak])
463
706
 
464
- ## [v0.3.5]
707
+ ## [0.3.5]
465
708
 
466
709
  * Store processes in an array to ensure order of operations on Ruby 1.8.x
467
710
  ([#48] [msassak])
468
711
 
469
- ## [v0.3.4]
712
+ ## [0.3.4]
470
713
 
471
714
  * Use backticks (\`) instead of quotes (") to specify command line. Quote still
472
715
  works, but is deprecated. ([aeden], [aslakhellesoy])
473
716
 
474
- ## [v0.3.3]
717
+ ## [0.3.3]
475
718
 
476
719
  * Updated RSpec development requirement to 2.5 ([rspeicher], [msassak],
477
720
  [aslakhellesoy])
478
721
  * Updated RubyGems dependency to 1.6.1 ([rspeicher])
479
722
 
480
- ## [v0.3.2]
723
+ ## [0.3.2]
481
724
 
482
725
  * Wrong number of args in the When I overwrite step ([aslakhellesoy])
483
726
 
484
- ## [v0.3.1]
727
+ ## [0.3.1]
485
728
 
486
729
  * Broken 0.3.0 release ([#43], [#44], [msassak])
487
730
  * Quotes (") and newline (\n) in step arguments are no longer unescaped. ([aslakhellesoy])
488
731
 
489
- ## [v0.3.0]
732
+ ## [0.3.0]
490
733
 
491
734
  * Remove latency introduced in the 0.2.8 release ([#42], [msassak])
492
- * New stepdef Then /^the stdout should contain:$/ do |partial_output| ([aslakhellesoy])
735
+ * New stepdef `Then /^the stdout should contain:$/ do |partial_output|` ([aslakhellesoy])
493
736
  * Quotes (") and newline (\n) in step arguments no longer need to be backslash-escaped. ([aslakhellesoy])
494
737
 
495
- ## [v0.2.8]
738
+ ## [0.2.8]
496
739
 
497
- * Replaced background_process with childprocess, a cross-platform process control
740
+ * Replaced `background_process` with `childprocess`, a cross-platform process control
498
741
  library. This will allow Aruba to run on Windows and JRuby in addition to \*nix
499
742
  MRI. ([#16], [#27], [#31], [msassak], [jarib], [mattwynne], [aknuds1])
500
743
 
501
- ## [v0.2.7]
744
+ ## [0.2.7]
502
745
 
503
746
  * Upgrade to Cucumber 0.10.0. ([aslakhellesoy])
504
- * 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
505
748
  is to prevent bundler from loading it when we don't want to. ([aslakhellesoy])
506
749
  * Outputting a lot of data causes process to time out ([#30], [msassak])
507
750
 
508
- ## [v0.2.6]
751
+ ## [0.2.6]
509
752
 
510
753
  * You can set `@aruba_timeout_seconds` in a Before hook to tell Aruba to wait
511
754
  for a process to complete. Default: 1 second. ([aslakhellesoy])
512
755
  * Fixed small bug in `/^the stdout should contain exactly:$/` ([aslakhellesoy])
513
756
 
514
- ## [v0.2.5]
757
+ ## [0.2.5]
515
758
 
516
759
  * Added 'a file named "whatever" should (not) exist' ([rspeicher])
517
760
  * Added 'a directory named "whatever" should (not) exist' ([rspeicher])
@@ -524,12 +767,12 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
524
767
  are complete ([#17], [msassak])
525
768
  * Outputting large amounts of data causes run steps to hang ([#18], [msassak])
526
769
 
527
- ## [v0.2.4]
770
+ ## [0.2.4]
528
771
 
529
772
  * Added step definitions for removing files and checking presence of a single
530
773
  file. ([aslakhellesoy])
531
774
 
532
- ## [v0.2.3]
775
+ ## [0.2.3]
533
776
 
534
777
  * Directory should not exist gives false-positive ([#13], [#15], [nruth])
535
778
  * Added step definitions for comparing file contents with regexps ([#9],
@@ -539,17 +782,17 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
539
782
  * Communication with interactive processes ([#4], [msassak])
540
783
  * Remove hyphens separating stdout and stderr ([aknuds1])
541
784
 
542
- ## [v0.2.2]
785
+ ## [0.2.2]
543
786
 
544
787
  * Added a @bin tag that sets up './bin' first on the path ([aslakhellesoy])
545
788
  * Richer API making aruba easier to use from Ruby code. (Mark Nijhof, [aslakhellesoy])
546
789
  * No more support for RVM. Use rvm 1.9.2,1.8.7 exec cucumber .... instead. (Mark Nijhof, [aslakhellesoy])
547
790
 
548
- ## [v0.2.1]
791
+ ## [0.2.1]
549
792
 
550
793
  * Always compare with RSpec should =~ instead of should match. This gives a diff when there is no match. ([aslakhellesoy])
551
794
 
552
- ## [v0.2.0]
795
+ ## [0.2.0]
553
796
 
554
797
  * Added aruba.gemspec. ([dchelimsky])
555
798
  * Several step definitions regarding output have changed. ([#1], [aslakhellesoy])
@@ -578,28 +821,28 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
578
821
  - /^I should see matching:$/
579
822
  + /^the output should match:$/
580
823
 
581
- ## [v0.1.9]
824
+ ## [0.1.9]
582
825
 
583
826
  * If the GOTGEMS environment variable is set, bundler won't run (faster). ([aslakhellesoy])
584
827
 
585
- ## [v0.1.8]
828
+ ## [0.1.8]
586
829
 
587
830
  * Use // instead of "" for "I should see matching" step. ([aslakhellesoy])
588
831
  * Replace rvm gemset character '%' with '@' for rvm 0.1.24 ([#5], Ashley Moran)
589
832
  * Support gem bundler, making it easier to specify gems. ([aslakhellesoy])
590
833
 
591
- ## [v0.1.7]
834
+ ## [0.1.7]
592
835
 
593
836
  * New @announce-stderr tag ([robertwahler])
594
837
  * New "I should see matching" steps using Regexp ([robertwahler])
595
838
 
596
- ## [v0.1.6]
839
+ ## [0.1.6]
597
840
 
598
841
  * `When /^I successfully run "(.*)"$/` now prints the combined output if exit
599
842
  status is not 0. ([aslakhellesoy])
600
843
  * Add bundle to list of common ruby scripts. ([aslakhellesoy])
601
844
 
602
- ## [v0.1.5]
845
+ ## [0.1.5]
603
846
 
604
847
  * Added ability to map rvm versions to a specific version with config/aruba-rvm.yml. ([aslakhellesoy])
605
848
  * Check for presence of files. ([aslakhellesoy])
@@ -608,86 +851,169 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
608
851
  * Added support for rvm, making it possible to choose Ruby interpreter. ([aslakhellesoy])
609
852
  * Added @announce-cmd, @announce-stdout and @announce tags, useful for seeing what's executed and outputted. ([aslakhellesoy])
610
853
 
611
- ## [v0.1.4]
854
+ ## [0.1.4]
612
855
 
613
856
  * New step definition for appending to a file ([aslakhellesoy])
614
857
 
615
- ## [v0.1.3]
858
+ ## [0.1.3]
616
859
 
617
860
  * New step definition for cd (change directory) ([aslakhellesoy])
618
861
 
619
- ## [v0.1.2]
862
+ ## [0.1.2]
620
863
 
621
864
  * Separated API from Cucumber step definitions, makes this usable without Cucumber. ([aslakhellesoy])
622
865
 
623
- ## [v0.1.1]
866
+ ## [0.1.1]
624
867
 
625
868
  * Better Regexp escaping ([dchelimsky])
626
869
 
627
- ## [v0.1.0]
870
+ ## [0.1.0]
628
871
 
629
872
  * First release ([dchelimsky] and [aslakhellesoy])
630
873
 
631
874
  <!-- Contributors -->
632
875
 
633
- [AdrieanKhisbe]: https://github.com/AdrieanKhisbe
634
- [LTe]: https://github.com/LTe
635
- [aeden]: https://github.com/aeden
636
- [aknuds1]: https://github.com/aknuds1
637
- [alindeman]: https://github.com/alindeman
638
- [aslakhellesoy]: https://github.com/aslakhellesoy
639
- [davetron5000]: https://github.com/davetron5000
640
- [dchelimsky]: https://github.com/dchelimsky
641
- [doudou]: https://github.com/doudou
642
- [e2]: https://github.com/e2
643
- [greyblake]: https://github.com/greyblake
644
- [hectcastro]: https://github.com/hectcastro
645
- [jarib]: https://github.com/jarib
646
- [jaysonesmith]: https://github.com/jaysonesmith
647
- [jonrowe]: https://github.com/JonRowe
648
- [lithium3141]: https://github.com/lithium3141
649
- [mattwynne]: https://github.com/mattwynne
650
- [maxmeyer]: https://github.com/maxmeyer
651
- [msassak]: https://github.com/msassak
652
- [mvz]: https://github.com/mvz
653
- [myronmarston]: https://github.com/myronmarston
654
- [njam]: https://github.com/njam
655
- [nruth]: https://github.com/nruth
656
- [olleolleolle]: https://github.com/olleolleolle
657
- [richardxia]: https://github.com/richardxia
658
- [robertwahler]: https://github.com/robertwahler
659
- [roschaefer]: https://github.com/roschaefer
660
- [rspeicher]: https://github.com/rspeicher
661
- [rubbish]: https://github.com/rubbish
662
- [scottj97]: https://github.com/scottj97
663
- [stamhankar999]: https://github.com/stamhankar999
664
- [taylor]: https://github.com/taylor
665
- [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
666
920
  [xtrasimplicity]: https://github.com/xtrasimplicity
921
+ [y-higuchi]: https://github.com/y-higuchi
667
922
 
668
923
  <!-- issues & pull requests -->
669
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
670
965
  [#642]: https://github.com/cucumber/aruba/pull/642
671
966
  [#639]: https://github.com/cucumber/aruba/pull/639
672
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
673
976
  [#622]: https://github.com/cucumber/aruba/pull/622
674
977
  [#621]: https://github.com/cucumber/aruba/pull/621
675
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
676
983
  [#612]: https://github.com/cucumber/aruba/pull/612
677
984
  [#611]: https://github.com/cucumber/aruba/pull/611
678
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
679
988
  [#604]: https://github.com/cucumber/aruba/pull/604
680
989
  [#603]: https://github.com/cucumber/aruba/pull/603
681
990
  [#602]: https://github.com/cucumber/aruba/pull/602
682
991
  [#601]: https://github.com/cucumber/aruba/pull/601
683
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
684
996
  [#591]: https://github.com/cucumber/aruba/pull/591
685
997
  [#588]: https://github.com/cucumber/aruba/pull/588
998
+ [#587]: https://github.com/cucumber/aruba/pull/587
686
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
687
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
688
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
689
1011
  [#561]: https://github.com/cucumber/aruba/pull/561
1012
+ [#560]: https://github.com/cucumber/aruba/pull/560
690
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
691
1017
  [#551]: https://github.com/cucumber/aruba/pull/551
692
1018
  [#548]: https://github.com/cucumber/aruba/pull/548
693
1019
  [#546]: https://github.com/cucumber/aruba/pull/546
@@ -860,94 +1186,105 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
860
1186
 
861
1187
  <!-- Releases -->
862
1188
 
863
- [v0.14.10]: https://github.com/cucumber/aruba/compare/v0.14.9...v0.14.10
864
- [v0.14.9]: https://github.com/cucumber/aruba/compare/v0.14.8...v0.14.9
865
- [v0.14.8]: https://github.com/cucumber/aruba/compare/v0.14.7...v0.14.8
866
- [v0.14.7]: https://github.com/cucumber/aruba/compare/v0.14.6...v0.14.7
867
- [v0.14.6]: https://github.com/cucumber/aruba/compare/v0.14.5...v0.14.6
868
- [v0.14.5]: https://github.com/cucumber/aruba/compare/v0.14.4...v0.14.5
869
- [v0.14.4]: https://github.com/cucumber/aruba/compare/v0.14.3...v0.14.4
870
- [v0.14.3]: https://github.com/cucumber/aruba/compare/v0.14.2...v0.14.3
871
- [v0.14.2]: https://github.com/cucumber/aruba/compare/v0.14.1...v0.14.2
872
- [v0.14.1]: https://github.com/cucumber/aruba/compare/v0.14.0...v0.14.1
873
- [v0.14.0]: https://github.com/cucumber/aruba/compare/v0.13.0...v0.14.0
874
- [v0.13.0]: https://github.com/cucumber/aruba/compare/v0.12.0...v0.13.0
875
- [v0.12.0]: https://github.com/cucumber/aruba/compare/v0.11.2...v0.12.0
876
- [v0.11.2]: https://github.com/cucumber/aruba/compare/v0.11.1...v0.11.2
877
- [v0.11.1]: https://github.com/cucumber/aruba/compare/v0.11.0...v0.11.1
878
- [v0.11.0]: https://github.com/cucumber/aruba/compare/v0.11.0.pre4...v0.11.0
879
- [v0.11.0.pre4]: https://github.com/cucumber/aruba/compare/v0.11.0.pre3...v0.11.0.pre4
880
- [v0.11.0.pre3]: https://github.com/cucumber/aruba/compare/v0.11.0.pre2...v0.11.0.pre3
881
- [v0.11.0.pre2]: https://github.com/cucumber/aruba/compare/v0.11.0.pre...v0.11.0.pre2
882
- [v0.11.0.pre]: https://github.com/cucumber/aruba/compare/v0.10.2...v0.11.0.pre
883
- [v0.10.2]: https://github.com/cucumber/aruba/compare/v0.10.1...v0.10.2
884
- [v0.10.1]: https://github.com/cucumber/aruba/compare/v0.10.0...v0.10.1
885
- [v0.10.0]: https://github.com/cucumber/aruba/compare/v0.10.0.pre2...v0.10.0
886
- [v0.10.0.pre2]: https://github.com/cucumber/aruba/compare/v0.10.0.pre...v0.10.0.pre2
887
- [v0.10.0.pre]: https://github.com/cucumber/aruba/compare/v0.9.0...v0.10.0
888
- [v0.9.0]: https://github.com/cucumber/aruba/compare/v0.9.0.pre2...v0.9.0
889
- [v0.9.0.pre2]: https://github.com/cucumber/aruba/compare/v0.9.0.pre...v0.9.0.pre2
890
- [v0.9.0.pre]: https://github.com/cucumber/aruba/compare/v0.8.1...v0.9.0.pre
891
- [v0.8.1]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.1
892
- [v0.8.0]: https://github.com/cucumber/aruba/compare/v0.8.0.pre3...v0.8.0
893
- [v0.8.0.pre3]: https://github.com/cucumber/aruba/compare/v0.8.0.pre2...v0.8.0.pre3
894
- [v0.8.0.pre2]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.0.pre2
895
- [v0.8.0.pre]: https://github.com/cucumber/aruba/compare/v0.7.4...v0.8.0.pre
896
- [v0.7.4]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.4
897
- [v0.7.3]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.3
898
- [v0.7.2]: https://github.com/cucumber/aruba/compare/v0.7.1...v0.7.2
899
- [v0.7.1]: https://github.com/cucumber/aruba/compare/v0.7.0...v0.7.1
900
- [v0.7.0]: https://github.com/cucumber/aruba/compare/v0.6.2...v0.7.0
901
- [v0.6.2]: https://github.com/cucumber/aruba/compare/v0.6.1...v0.6.2
902
- [v0.6.1]: https://github.com/cucumber/aruba/compare/v0.6.0...v0.6.1
903
- [v0.6.0]: https://github.com/cucumber/aruba/compare/v0.5.4...v0.6.0
904
- [v0.5.4]: https://github.com/cucumber/aruba/compare/v0.5.3...v0.5.4
905
- [v0.5.3]: https://github.com/cucumber/aruba/compare/v0.5.2...v0.5.3
906
- [v0.5.2]: https://github.com/cucumber/aruba/compare/v0.5.1...v0.5.2
907
- [v0.5.1]: https://github.com/cucumber/aruba/compare/v0.5.0...v0.5.1
908
- [v0.5.0]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.5.0
909
- [v0.4.11]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.4.11
910
- [v0.4.10]: https://github.com/cucumber/aruba/compare/v0.4.9...v0.4.10
911
- [v0.4.9]: https://github.com/cucumber/aruba/compare/v0.4.8...v0.4.9
912
- [v0.4.8]: https://github.com/cucumber/aruba/compare/v0.4.7...v0.4.8
913
- [v0.4.7]: https://github.com/cucumber/aruba/compare/v0.4.6...v0.4.7
914
- [v0.4.6]: https://github.com/cucumber/aruba/compare/v0.4.5...v0.4.6
915
- [v0.4.5]: https://github.com/cucumber/aruba/compare/v0.4.4...v0.4.5
916
- [v0.4.4]: https://github.com/cucumber/aruba/compare/v0.4.3...v0.4.4
917
- [v0.4.3]: https://github.com/cucumber/aruba/compare/v0.4.2...v0.4.3
918
- [v0.4.2]: https://github.com/cucumber/aruba/compare/v0.4.1...v0.4.2
919
- [v0.4.1]: https://github.com/cucumber/aruba/compare/v0.4.0...v0.4.1
920
- [v0.4.0]: https://github.com/cucumber/aruba/compare/v0.3.7...v0.4.0
921
- [v0.3.7]: https://github.com/cucumber/aruba/compare/v0.3.6...v0.3.7
922
- [v0.3.6]: https://github.com/cucumber/aruba/compare/v0.3.5...v0.3.6
923
- [v0.3.5]: https://github.com/cucumber/aruba/compare/v0.3.4...v0.3.5
924
- [v0.3.4]: https://github.com/cucumber/aruba/compare/v0.3.3...v0.3.4
925
- [v0.3.3]: https://github.com/cucumber/aruba/compare/v0.3.2...v0.3.3
926
- [v0.3.2]: https://github.com/cucumber/aruba/compare/v0.3.1...v0.3.2
927
- [v0.3.1]: https://github.com/cucumber/aruba/compare/v0.3.0...v0.3.1
928
- [v0.3.0]: https://github.com/cucumber/aruba/compare/v0.2.8...v0.3.0
929
- [v0.2.8]: https://github.com/cucumber/aruba/compare/v0.2.7...v0.2.8
930
- [v0.2.7]: https://github.com/cucumber/aruba/compare/v0.2.6...v0.2.7
931
- [v0.2.6]: https://github.com/cucumber/aruba/compare/v0.2.5...v0.2.6
932
- [v0.2.5]: https://github.com/cucumber/aruba/compare/v0.2.4...v0.2.5
933
- [v0.2.4]: https://github.com/cucumber/aruba/compare/v0.2.3...v0.2.4
934
- [v0.2.3]: https://github.com/cucumber/aruba/compare/v0.2.2...v0.2.3
935
- [v0.2.2]: https://github.com/cucumber/aruba/compare/v0.2.1...v0.2.2
936
- [v0.2.1]: https://github.com/cucumber/aruba/compare/v0.2.0...v0.2.1
937
- [v0.2.0]: https://github.com/cucumber/aruba/compare/v0.1.9...v0.2.0
938
- [v0.1.9]: https://github.com/cucumber/aruba/compare/v0.1.8...v0.1.9
939
- [v0.1.8]: https://github.com/cucumber/aruba/compare/v0.1.7...v0.1.8
940
- [v0.1.7]: https://github.com/cucumber/aruba/compare/v0.1.6...v0.1.7
941
- [v0.1.6]: https://github.com/cucumber/aruba/compare/v0.1.5...v0.1.6
942
- [v0.1.5]: https://github.com/cucumber/aruba/compare/v0.1.4...v0.1.5
943
- [v0.1.4]: https://github.com/cucumber/aruba/compare/v0.1.3...v0.1.4
944
- [v0.1.3]: https://github.com/cucumber/aruba/compare/v0.1.2...v0.1.3
945
- [v0.1.2]: https://github.com/cucumber/aruba/compare/v0.1.1...v0.1.2
946
- [v0.1.1]: https://github.com/cucumber/aruba/compare/v0.1.0...v0.1.1
947
- [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
948
1285
 
949
1286
  <!-- Other links -->
950
1287
 
951
1288
  [1]: http://semver.org
952
- [2]: http://keepachangelog.com)
1289
+ [2]: http://keepachangelog.com
953
1290
  [3]: https://github.com/cucumber/aruba/blob/master/CONTRIBUTING.md