Releases: cucumber/cucumber-ruby
v9.2.0
v9.1.2
Added
Changed
- Moved all CCK step definition/miscellaneous file logic from CCK gem to this repo.
All logic contained in compatibility (luke-hill) - Cleared up a few Layout/Linting cop offenses (#1750 luke-hill)
Fixed
- Fix a situation whereby the step definition message will omit the parameter-type name when it cannot be inferred
(This fixes an issue in cucumber-wire when passing legacy steps down the wire)
(#1746 luke-hill)
Removed
v9.1.1
v9.1.0
Added
Changed
- First couple of passes of tidying up approximately 40% of the manual fix cops
(#1739 #1740 #1741 #1742 luke-hill) - Removed a bunch of example files / sample projects from ancient projects no longer viable
(#1740 luke-hill) - When a
testStepResult
is of typeFAILED
we now pass in a new (Exception), message property
(#1738 luke-hill) ParameterType
message now contains a new (sourceReference), property
(This contains a uri string and aLocation
message -> for where the ParameterTypetransformer
is located) (#1738 luke-hill)#attach
now can take an optional filename parameter which will rename attachments like PDF's
(#1738 luke-hill)
Fixed
- Clear up a couple of tiny "nuances" that hide lots of issues when running local vs remote (Primarily CCK tests should always be runnable)
(#1738 luke-hill)
Removed
v9.0.2
Changed
- Began to tidy up (Cleared some AutoFix cops), and organise rubocop tech-debt in repo (This introduced new rubocop sub-gems) (#1716 luke-hill)
- Gem update. Update rubocop gems to latest and increase minimum version of some cucumber sub-gems (#1732 luke-hill)
- Rubocop update. Massively overhauled the cucumber style / rubocop expectations and began to tackle some long-standing tech-debt (#1733 luke-hill)
- First couple of passes of tidying up approximately 15% of the autofix cops
(#1736 #1737 luke-hill)
Removed
v9.0.1
v9.0.0
v8.0.0
Added
- Add a WARNING message when using a space-separated string with cucumber_opts
(PR#
Issue#1614) - Add support for TruffleRuby
(PR#1612
gogainda) - Add support for named hooks
(PR#1636)
Fixed
v8.0.0.RC.1
Fixed
- Fix TestRunFinished success property in html formatter and all formatters
based on the messages: it now returns true if the run has passed
(PR#1606
Issue#1604) - Fix usage of namespaced modules across multiple scenarios
(PR#1603
Issue#1595) - Do not serialize Messages::Hook#tag_expression if it is empty.
(PR#1579) - JSON Formatter uses "pretty" output format
(PR#1580) - Fixed JSON Formatter "end of background" detection.
(PR#1580) - Fixed JSON Formatter expansion of Scenario Outline templates in Doc Strings.
(PR#1580) - Removed usage of
eval
inCucumber::Term::ANSIColor
andCucumber::Formatter::ANSIColor
.
(PR#1589
Issue#1583) - Fixed
DataTable#map_headers
when headers have the same prefix.
(PR#1598
Issue#1450)
Changed
- Replace dependency cucumber-create-meta
with the new cucumber-ci-environment
(PR#1601) - In
DataTable#map_column
, Changed thestrict
argument into a keyword argument.
See UPGRADING.md.
(PR#1594
Issue#1592) - Added Ruby 3.1
(PR#1607)
Removed
AfterConfiguration
has been removed. Please useInstallPlugin
orBeforeAll
instead.
See the UPGRADING.md to update your code accordingly.
(PR#1591)- 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. - Removed former unused
stdin
argument fromCli::Main
. That may impact your code
if you use cucumber APICucumber::Cli::Main
. See UPGRADING.md.
(PR#1588
Issue#1581) - Removed
DataTable#map_column!
andDataTable#map_headers!
.
Those methods were error-prone and planned to be removed a long time ago. You
can use the immutable versions instead:DataTable#map_column
and
DataTable#map_headers
.
(PR#1590
Issue#1584) - Removed support for Ruby 2.5 and JRuby 9.2.
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.