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
2 changes: 1 addition & 1 deletion .github/workflows/rubocop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
persist-credentials: false
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
with:
ruby-version: '4.0.6'
ruby-version: '3.3.11'
bundler-cache: true
- run: bundle exec rubocop
2 changes: 1 addition & 1 deletion .github/workflows/test-ruby.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: ['3.2', '3.3', '3.4', '4.0']
ruby: ['3.3', '3.4', '4.0']
include:
- os: ubuntu-latest
ruby: jruby-10.0
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/zizmor-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,5 @@ jobs:
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false

- name: Run Zizmor
uses: zizmorcore/zizmor-action@3dc1ecc9bcb9e94e9b2c709687979e1298497054 # v0.6.2
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require:
AllCops:
NewCops: disable
# Keep this inline with the lowest ruby version in the gemspec
TargetRubyVersion: 3.2
TargetRubyVersion: 3.3
# Display cop name / style guide references
DisplayCopNames: true
DisplayStyleGuide: true
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ 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]
### Added
- Added new dependency on `cucumber-query` which is a new internal structure for all message based formatters to query the state
of the test run ([#1889](https://github.com/cucumber/cucumber-ruby/pull/1889) [luke-hill](https://github.com/luke-hill) & [mattwynne](https://github.com/mattwynne))

### Changed
- Updated `cucumber-compatibility-kit` to v26
- Refactor to internal error logic (No user facing changes)
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ gemspec
# gem 'cucumber-gherkin', path: '../gherkin/ruby'
# gem 'cucumber-html-formatter', path: '../html-formatter/ruby'
# gem 'cucumber-messages', path: '../messages/ruby'
# gem 'cucumber-query', path: '../query/ruby'
# gem 'cucumber-tag-expressions', path: '../tag-expressions/ruby'
5 changes: 3 additions & 2 deletions cucumber.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@ Gem::Specification.new do |s|
'funding_uri' => 'https://opencollective.com/cucumber'
}

s.required_ruby_version = '>= 3.2'
s.required_ruby_version = '>= 3.3'
s.required_rubygems_version = '>= 3.2.8'

s.add_dependency 'base64', '~> 0.2'
s.add_dependency 'builder', '~> 3.2'
s.add_dependency 'cucumber-ci-environment', '> 9', '< 14'
s.add_dependency 'cucumber-core', '>= 19', '< 20'
s.add_dependency 'cucumber-core', '> 18', '< 20'
s.add_dependency 'cucumber-cucumber-expressions', '> 17', '< 21'
s.add_dependency 'cucumber-html-formatter', '> 21', '< 25'
s.add_dependency 'cucumber-query', '~> 16.1'
s.add_dependency 'diff-lcs', '~> 1.5'
s.add_dependency 'logger', '~> 1.6'
s.add_dependency 'mini_mime', '~> 1.1'
Expand Down
273 changes: 0 additions & 273 deletions lib/cucumber/query.rb

This file was deleted.

Loading