diff --git a/History.md b/History.md index 4c79c313..0e570961 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,11 @@ +# Version 3.10.1 +Release date: 2018-11-03 + +### Fixed + +* Fix `aria-label` and `test_id` matching for `link_or_button` selector type - Issue #2125 +* Fixed crash in element path creation for matcher failure messages - Issue #2120 + # Version 3.10.0 Release date: 2018-10-23 diff --git a/lib/capybara/queries/selector_query.rb b/lib/capybara/queries/selector_query.rb index e56c9559..6e649827 100644 --- a/lib/capybara/queries/selector_query.rb +++ b/lib/capybara/queries/selector_query.rb @@ -156,7 +156,6 @@ module Capybara def matches_node_filters?(node) unapplied_options = options.keys - valid_keys - node_filters.all? do |filter_name, filter| if filter.matcher? unapplied_options.select { |option_name| filter.handles_option?(option_name) }.all? do |option_name| diff --git a/lib/capybara/version.rb b/lib/capybara/version.rb index 42ef3b28..de9d3dd9 100644 --- a/lib/capybara/version.rb +++ b/lib/capybara/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Capybara - VERSION = '3.10.0' + VERSION = '3.10.1' end