v7.1.0
Added
-
New
BeforeAllandAfterAllhooksMore information about hooks can be found in
features/docs/writing_support_code/hooks/README.md. -
New hook:
InstallPluginIt is intended to be used to install an external plugin, like cucumber-ruby-wire.
It is fired just after the
AfterConfigurationone. Two parameters are given:
the sameconfigurationinstance that is given toAfterConfiguration,
and aregistry_wrapperwhich allows
plugins to have access to specific internal methods.See cucumber-ruby-wire for a
usage example.More information about hooks can be found in
features/docs/writing_support_code/hooks/README.md.
Changed
- Added release dates to CHANGELOG.md.
(1543
AudTheCodeWitch)
Deprecated
-
AfterConfigurationis deprecated. Please useInstallPluginorBeforeAllinstead.
See the UPGRADING.md to update your code accordingly.
(1570) -
The built-in Wire protocol
The Wire protocol is still officially supported, but as an optional plugin rather
than a built-in feature. See the
UPGRADING.md
to update your code accordingly.
Known issue
- There is a known issue with JRuby 9.3. For more info, see
PR#1571.