v7.1.0
Added
-
New
BeforeAll
andAfterAll
hooksMore information about hooks can be found in
features/docs/writing_support_code/hooks/README.md. -
New hook:
InstallPlugin
It is intended to be used to install an external plugin, like cucumber-ruby-wire.
It is fired just after the
AfterConfiguration
one. Two parameters are given:
the sameconfiguration
instance that is given toAfterConfiguration
,
and aregistry_wrapper
which 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
-
AfterConfiguration
is deprecated. Please useInstallPlugin
orBeforeAll
instead.
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.