Prior to upgrading to v8.0.0 upgrade to latest v7.x and stop using all deprecated features. Some features will log a deprecation warning.
See also:
You should not use the methods DataTable#asX()
in DataTableType
s.
It was working in previous versions, but it will now raise an exception when running your tests.
Instead you should use:
- Replace
DataTable#asList()
withDataTable#values()
- Replace
DataTable#asLists()
withDataTable#cells()
- Replace
DataTable#asMaps()
withDataTable#entries()
More context for this change at cucumber/common#1419