www/ruby-capybara: update to 3.36.0
3.36.0 (2021-10-24) Changed * Ruby 2.6.0+ is now required * Minimum selenium-webdriver supported is now 3.142.7 Added * Support for selenium-webdriver 4.x * allow_label_click accepts click options to be used when clicking an associated label * Deprecated allow_gumbo= in favor of use_html5_parsing= to enable use of Nokogiri::HTML5 when available * Session#active_element returns the element with focus - Not supported by the RackTest driver [Sean Doyle] * Support focused: filter for finding interactive elements - Not supported by the RackTest driver [Sean Doyle] Fixed * Sibling and ancestor queries now work with Simple::Node - Issue #2452 * rack_test correctly ignores readonly attribute on specific input element types * Node#all_text always returns a string - Issue #2477 * have_any_of_selectors negated match - Issue #2473 * Document#scroll_to fixed for standards behavior - pass quirks: true if you need the older behavior [Eric Anderson] * Use capture on attach file event listener for better React compatibility [Jeff Way] * Animation disabler produces valid HTML [Javi Martin] Removed * References to non-w3c mode in drivers/tests. Non-w3c mode is obsolete and no one should be using it anymore. Capybara hasn't been testing/supporting it in a while
This commit is contained in:
parent
9088a01dbe
commit
a9cb0dd87b
3 changed files with 11 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.27 2021/02/03 15:33:07 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.28 2021/12/11 14:44:13 taca Exp $
|
||||
|
||||
DISTNAME= capybara-3.35.3
|
||||
DISTNAME= capybara-3.36.0
|
||||
CATEGORIES= www devel
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
|
@ -10,7 +10,7 @@ LICENSE= mit
|
|||
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-addressable>=0:../../net/ruby-addressable
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-mini_mime>=0.1.3:../../mail/ruby-mini_mime
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-nokogiri>=1.8:../../textproc/ruby-nokogiri
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-nokogiri>=1.8<2:../../textproc/ruby-nokogiri
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-rack>=1.6.0:../../www/ruby-rack
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-rack-test>=0.6.3:../../www/ruby-rack-test
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-regexp_parser>=1.5:../../devel/ruby-regexp_parser
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.17 2021/01/26 15:02:11 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.18 2021/12/11 14:44:13 taca Exp $
|
||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||
${GEM_LIBDIR}/.yardopts
|
||||
${GEM_LIBDIR}/History.md
|
||||
|
@ -21,6 +21,7 @@ ${GEM_LIBDIR}/lib/capybara/node/element.rb
|
|||
${GEM_LIBDIR}/lib/capybara/node/finders.rb
|
||||
${GEM_LIBDIR}/lib/capybara/node/matchers.rb
|
||||
${GEM_LIBDIR}/lib/capybara/node/simple.rb
|
||||
${GEM_LIBDIR}/lib/capybara/queries/active_element_query.rb
|
||||
${GEM_LIBDIR}/lib/capybara/queries/ancestor_query.rb
|
||||
${GEM_LIBDIR}/lib/capybara/queries/base_query.rb
|
||||
${GEM_LIBDIR}/lib/capybara/queries/current_path_query.rb
|
||||
|
@ -140,6 +141,7 @@ ${GEM_LIBDIR}/lib/capybara/spec/public/test.js
|
|||
${GEM_LIBDIR}/lib/capybara/spec/session/accept_alert_spec.rb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/session/accept_confirm_spec.rb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/session/accept_prompt_spec.rb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/session/active_element_spec.rb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/session/all_spec.rb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/session/ancestor_spec.rb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/session/assert_all_of_selectors_spec.rb
|
||||
|
@ -239,6 +241,7 @@ ${GEM_LIBDIR}/lib/capybara/spec/views/frame_two.erb
|
|||
${GEM_LIBDIR}/lib/capybara/spec/views/header_links.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/host_links.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/initial_alert.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/layout.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/obscured.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/offset.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/path.erb
|
||||
|
@ -268,7 +271,6 @@ ${GEM_LIBDIR}/lib/capybara/spec/views/with_scope_other.erb
|
|||
${GEM_LIBDIR}/lib/capybara/spec/views/with_simple_html.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/with_slow_unload.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/with_sortable_js.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/with_title.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/with_unload_alert.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/with_windows.erb
|
||||
${GEM_LIBDIR}/lib/capybara/spec/views/within_frames.erb
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.23 2021/10/26 11:30:54 nia Exp $
|
||||
$NetBSD: distinfo,v 1.24 2021/12/11 14:44:13 taca Exp $
|
||||
|
||||
BLAKE2s (capybara-3.35.3.gem) = ef6ce7a649ab8d93e5d4341b007a513c5970dfa01b56e75913046235f3f776a9
|
||||
SHA512 (capybara-3.35.3.gem) = 90507b2254fdd7aff375a305c1112b878d5f0a7c909e7d95b62c6728acc340f73d244304efc07c3dcc707825afcd9b23b088e5d889717efe4edc2dab4dd38d2a
|
||||
Size (capybara-3.35.3.gem) = 371712 bytes
|
||||
BLAKE2s (capybara-3.36.0.gem) = 56361112d8c354d9f9c6e75a3bbf5e41cd2e7fee77b27121a596a14541f1ec7f
|
||||
SHA512 (capybara-3.36.0.gem) = 7ffc9d3e4058b08acd1cb223eb0313112354783cc4464f8f0747561caa45425f8623be7052f331677a66a7b9f5e645e48ae0118fe78c2d185408e5279e66f169
|
||||
Size (capybara-3.36.0.gem) = 374272 bytes
|
||||
|
|
Loading…
Reference in a new issue