Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) for more info on how to contribute to Cucumber.

## [Unreleased]
### Removed
- Strict configuration has been removed from all `Result` classes

### Added
- Added `#to_envelope` for `Cucumber::Core::Gherkin::Document` ([#329](https://github.com/cucumber/cucumber-ruby-core/pull/329))

### Changed
- Refactored the internal base `Event` class to reduce complexity and make it more flexible for future use (No user facing changes)
- Refactored the `Result` classes to be more simplified and one class per file

## [16.2.0] - 2026-02-06
### Changed
Expand Down
4 changes: 2 additions & 2 deletions lib/cucumber/core/report/summary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def initialize(event_bus)
subscribe_to(event_bus)
end

def ok?(strict: Test::Result::StrictConfiguration.new)
test_cases.ok?(strict: strict)
def ok?
test_cases.ok?
end

private
Expand Down
Loading
Loading