Received: by mail.netbsd.org (Postfix, from userid 605) id 6762E84DFE; Sat, 17 Mar 2018 14:26:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 600F784D5B for ; Sat, 17 Mar 2018 14:26:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id yCk7qVgXUtIV for ; Sat, 17 Mar 2018 14:26:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3245684D39 for ; Sat, 17 Mar 2018 14:26:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2BD69FB40; Sat, 17 Mar 2018 14:26:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152129678314350" MIME-Version: 1.0 Date: Sat, 17 Mar 2018 14:26:23 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www/ruby-capybara To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20180317142623.2BD69FB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_152129678314350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Mar 17 14:26:23 UTC 2018 Modified Files: pkgsrc/www/ruby-capybara: Makefile PLIST distinfo Log Message: www/ruby-capybara: update to 2.18.0 #Version 2.18.0 Release date: 2018-02-12 ### Fixed * Firefox/geckodriver setting of contenteditable childs contents * Ignore Selenium::WebDriver::Error::SessionNotCreatedError when quitting driver [Tim Connor] ### Removed * Headless chrome modal JS injection that is no longer needed for Chrome 64+/chromedriver 2.35+ # Version 2.17.0 Release date: 2018-01-02 ### Added * `have_all_of_selectors`, `have_none_of_selectors` RSpec matchers for parity with minitest assertions [Thomas Walpole] ### Fixed * Allow xpath 3.x gem [Thomas Walpole] * Issue when drivers returned nil for `current_path` and a matcher was used with a Regexp [Thomas Walpole] * Error message when visible element not found, but non-visible was [Andy Klimczak] # Version 2.16.1 Release date: 2017-11-20 ### Fixed * Fix rack_test driver for rack_test 0.7.1/0.8.0 [Thomas Walpole] * `accept_prompt` response text can contain quotes when using selenium with headless chrome [Thomas Walpole] # Version 2.16.0 Release date: 2017-11-13 ### Added * Attempt to move element into view when selenium doesn't correctly do it - See PR #1917 [Thomas Walpole] * `current_path` matchers will now autodetect path vs url based on string to be matched. Deprecates `:only_path` in favor of `:ignore_query` option [Thomas Walpole] * Session#evaluate_async_script [Thomas Walpole] ### Fixed * Default prompt value when using headless Chrome works correctly [Thomas Walpole] * Support new modal error returned by selenium-webdriver 3.7 for W3C drivers [Thomas Walpole] * Calling `respond_to?` on the object passed to `Capybara.configure` block - Issue #1935 # Version 2.15.4 Release date: 2017-10-07 ### Fixed * Visiting an absolute URL shouldn't overwrite the port when no server or always_include_port=false - Issue #1921 # Version 2.15.3 Release date: 2017-10-03 ### Fixed * Visiting '/' when Capybara.app_host has a trailing '/' - Issue #1918 [Thomas Walpole] # Version 2.15.2 Release date: 2017-10-02 ### Fixed * Include within scope description in element not found/ambiguous errors [Thomas Walpole] * Raise error when no activation block is passed to modal methods if using headless chrome [Thomas Walpole] * Don't retry element access when inspecting [Ivan Neverov] * Don't override a specified port (even if it is default port) in visited url [Thomas Walpole] To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/www/ruby-capybara/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/www/ruby-capybara/PLIST cvs rdiff -u -r1.11 -r1.12 pkgsrc/www/ruby-capybara/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152129678314350 Content-Disposition: inline Content-Length: 4463 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/ruby-capybara/Makefile diff -u pkgsrc/www/ruby-capybara/Makefile:1.14 pkgsrc/www/ruby-capybara/Makefile:1.15 --- pkgsrc/www/ruby-capybara/Makefile:1.14 Sat Sep 16 19:27:25 2017 +++ pkgsrc/www/ruby-capybara/Makefile Sat Mar 17 14:26:22 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2017/09/16 19:27:25 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2018/03/17 14:26:22 taca Exp $ -DISTNAME= capybara-2.15.1 +DISTNAME= capybara-2.18.0 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME} CATEGORIES= devel ruby www Index: pkgsrc/www/ruby-capybara/PLIST diff -u pkgsrc/www/ruby-capybara/PLIST:1.9 pkgsrc/www/ruby-capybara/PLIST:1.10 --- pkgsrc/www/ruby-capybara/PLIST:1.9 Mon Jan 1 22:30:03 2018 +++ pkgsrc/www/ruby-capybara/PLIST Sat Mar 17 14:26:22 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2018/01/01 22:30:03 rillig Exp $ +@comment $NetBSD: PLIST,v 1.10 2018/03/17 14:26:22 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/.yard/templates_custom/default/class/html/selectors.erb ${GEM_LIBDIR}/.yard/templates_custom/default/class/html/setup.rb @@ -91,6 +91,7 @@ ${GEM_LIBDIR}/lib/capybara/spec/session/ ${GEM_LIBDIR}/lib/capybara/spec/session/element/match_css_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/element/match_xpath_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/element/matches_selector_spec.rb +${GEM_LIBDIR}/lib/capybara/spec/session/evaluate_async_script_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/evaluate_script_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/execute_script_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/fill_in_spec.rb @@ -104,11 +105,13 @@ ${GEM_LIBDIR}/lib/capybara/spec/session/ ${GEM_LIBDIR}/lib/capybara/spec/session/frame/within_frame_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/go_back_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/go_forward_spec.rb +${GEM_LIBDIR}/lib/capybara/spec/session/has_all_selectors_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/has_button_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/has_css_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/has_current_path_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/has_field_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/has_link_spec.rb +${GEM_LIBDIR}/lib/capybara/spec/session/has_none_selectors_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/has_select_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/has_selector_spec.rb ${GEM_LIBDIR}/lib/capybara/spec/session/has_table_spec.rb @@ -155,6 +158,7 @@ ${GEM_LIBDIR}/lib/capybara/spec/views/fr ${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/path.erb ${GEM_LIBDIR}/lib/capybara/spec/views/popup_one.erb ${GEM_LIBDIR}/lib/capybara/spec/views/popup_two.erb @@ -162,6 +166,7 @@ ${GEM_LIBDIR}/lib/capybara/spec/views/po ${GEM_LIBDIR}/lib/capybara/spec/views/tables.erb ${GEM_LIBDIR}/lib/capybara/spec/views/with_base_tag.erb ${GEM_LIBDIR}/lib/capybara/spec/views/with_count.erb +${GEM_LIBDIR}/lib/capybara/spec/views/with_fixed_header_footer.erb ${GEM_LIBDIR}/lib/capybara/spec/views/with_hover.erb ${GEM_LIBDIR}/lib/capybara/spec/views/with_html.erb ${GEM_LIBDIR}/lib/capybara/spec/views/with_html_entities.erb Index: pkgsrc/www/ruby-capybara/distinfo diff -u pkgsrc/www/ruby-capybara/distinfo:1.11 pkgsrc/www/ruby-capybara/distinfo:1.12 --- pkgsrc/www/ruby-capybara/distinfo:1.11 Sun Sep 10 16:14:59 2017 +++ pkgsrc/www/ruby-capybara/distinfo Sat Mar 17 14:26:22 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2017/09/10 16:14:59 taca Exp $ +$NetBSD: distinfo,v 1.12 2018/03/17 14:26:22 taca Exp $ -SHA1 (capybara-2.15.1.gem) = 8f572f038744201d6c4769742c2a1f7e71eb61f3 -RMD160 (capybara-2.15.1.gem) = efd18c060907fbde14ce2e54ed9a52c8c856e8b9 -SHA512 (capybara-2.15.1.gem) = 03295b5008889523930898b51d943cd0976e0c3a771acb2d54a899009d77ab8248d94153089283cb73813e3397e656c3bc1ee7deee0d0cd001f8e15a79c45119 -Size (capybara-2.15.1.gem) = 270336 bytes +SHA1 (capybara-2.18.0.gem) = e9c56e169328ed55b726515d48a7000af87219d3 +RMD160 (capybara-2.18.0.gem) = 590b4d1cba0aa6b841ce65252c9b46bf8e3d5872 +SHA512 (capybara-2.18.0.gem) = 3bb994e022593d485a07296193a16cae7b45e96e87dd10b2bd4807ad2bc990801044c0493360598d1626c3e367e8de87e407f65c2c6f42674d5f1b9c0b5c1933 +Size (capybara-2.18.0.gem) = 274432 bytes --_----------=_152129678314350--