pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/ruby-selenium-webdriver



Module Name:    pkgsrc
Committed By:   taca
Date:           Sun Dec  4 16:29:26 UTC 2022

Modified Files:
        pkgsrc/www/ruby-selenium-webdriver: Makefile PLIST distinfo

Log Message:
www/ruby-selenium-webdriver: update to 4.7.1

4.7.1 (2022-12-02)

  * Fix bug preventing selenium manager from using Internet Explorer

4.7.0 (2022-12-01)

  * Remove dependency on ChildProcess gem in favor of native Process.spawn
    (#11251)
  * Add support for Selenium Manager to work with IE Driver
  * Improve error handling for Selenium Manager

4.6.1 (2022-11-04)

  * fix bug preventing selenium-manager from being executable by default

4.6.0 (2022-11-04)

  * firefox scroll by amount is only failing on mac
  * add initial support for selenium manager
  * Revert "[rb] do not allow Select class to work with disabled selects"
  * Make sure selenium-manager is packed into gem
  * Fix platform list in #scroll_by guard


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/www/ruby-selenium-webdriver/Makefile
cvs rdiff -u -r1.9 -r1.10 pkgsrc/www/ruby-selenium-webdriver/PLIST
cvs rdiff -u -r1.13 -r1.14 pkgsrc/www/ruby-selenium-webdriver/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/ruby-selenium-webdriver/Makefile
diff -u pkgsrc/www/ruby-selenium-webdriver/Makefile:1.18 pkgsrc/www/ruby-selenium-webdriver/Makefile:1.19
--- pkgsrc/www/ruby-selenium-webdriver/Makefile:1.18    Mon Oct 10 03:36:51 2022
+++ pkgsrc/www/ruby-selenium-webdriver/Makefile Sun Dec  4 16:29:26 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2022/10/10 03:36:51 taca Exp $
+# $NetBSD: Makefile,v 1.19 2022/12/04 16:29:26 taca Exp $
 
-DISTNAME=      selenium-webdriver-4.5.0
+DISTNAME=      selenium-webdriver-4.7.1
 CATEGORIES=    www
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/www/ruby-selenium-webdriver/PLIST
diff -u pkgsrc/www/ruby-selenium-webdriver/PLIST:1.9 pkgsrc/www/ruby-selenium-webdriver/PLIST:1.10
--- pkgsrc/www/ruby-selenium-webdriver/PLIST:1.9        Thu Sep  1 14:17:27 2022
+++ pkgsrc/www/ruby-selenium-webdriver/PLIST    Sun Dec  4 16:29:26 2022
@@ -1,10 +1,13 @@
-@comment $NetBSD: PLIST,v 1.9 2022/09/01 14:17:27 taca Exp $
+@comment $NetBSD: PLIST,v 1.10 2022/12/04 16:29:26 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/CHANGES
 ${GEM_LIBDIR}/Gemfile
 ${GEM_LIBDIR}/LICENSE
 ${GEM_LIBDIR}/NOTICE
 ${GEM_LIBDIR}/README.md
+${GEM_LIBDIR}/bin/linux/selenium-manager
+${GEM_LIBDIR}/bin/macos/selenium-manager
+${GEM_LIBDIR}/bin/windows/selenium-manager.exe
 ${GEM_LIBDIR}/lib/selenium-webdriver.rb
 ${GEM_LIBDIR}/lib/selenium/server.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver.rb
@@ -24,6 +27,7 @@ ${GEM_LIBDIR}/lib/selenium/webdriver/chr
 ${GEM_LIBDIR}/lib/selenium/webdriver/common.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/action_builder.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/alert.rb
+${GEM_LIBDIR}/lib/selenium/webdriver/common/child_process.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/driver.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/downloads_files.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/driver_extensions/full_page_screenshot.rb
@@ -85,6 +89,7 @@ ${GEM_LIBDIR}/lib/selenium/webdriver/com
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/profile_helper.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/proxy.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/search_context.rb
+${GEM_LIBDIR}/lib/selenium/webdriver/common/selenium_manager.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/service.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/service_manager.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/common/shadow_root.rb
@@ -145,7 +150,6 @@ ${GEM_LIBDIR}/lib/selenium/webdriver/saf
 ${GEM_LIBDIR}/lib/selenium/webdriver/support.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/abstract_event_listener.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/block_event_listener.rb
-${GEM_LIBDIR}/lib/selenium/webdriver/support/cdp/domain.rb.erb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/cdp_client_generator.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/color.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/escaper.rb
@@ -153,6 +157,7 @@ ${GEM_LIBDIR}/lib/selenium/webdriver/sup
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/guards.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/guards/guard.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/guards/guard_condition.rb
+${GEM_LIBDIR}/lib/selenium/webdriver/support/nightly_version_generator.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/relative_locator.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/support/select.rb
 ${GEM_LIBDIR}/lib/selenium/webdriver/version.rb

Index: pkgsrc/www/ruby-selenium-webdriver/distinfo
diff -u pkgsrc/www/ruby-selenium-webdriver/distinfo:1.13 pkgsrc/www/ruby-selenium-webdriver/distinfo:1.14
--- pkgsrc/www/ruby-selenium-webdriver/distinfo:1.13    Sun Oct  9 09:13:24 2022
+++ pkgsrc/www/ruby-selenium-webdriver/distinfo Sun Dec  4 16:29:26 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.13 2022/10/09 09:13:24 taca Exp $
+$NetBSD: distinfo,v 1.14 2022/12/04 16:29:26 taca Exp $
 
-BLAKE2s (selenium-webdriver-4.5.0.gem) = 576532e93039d64046dd02f29c63b153ca23a6fc24db23ac3a2c03381fd86f37
-SHA512 (selenium-webdriver-4.5.0.gem) = 5fcb4c03aa16c2b5ad2ccb4b13357e70e401f4bc255bcdf02e1c36201f7d9f6359e5d4664cdfa0dfad34e5181c1f0d9b8d54ecef543418858c8efcdfbc2eb1b5
-Size (selenium-webdriver-4.5.0.gem) = 159744 bytes
+BLAKE2s (selenium-webdriver-4.7.1.gem) = ed02eb56d7e995472f5e9c56ce8ae805d3eddee12e720d861f4bb4800353773b
+SHA512 (selenium-webdriver-4.7.1.gem) = 3bf65f686f904adb87b4c2f85318c81d408216e9a528fcbf07ef31a9594d0d7ff5f744d96a65806a2bb55d0bf9f315c7af6d5b9c28023c6a1089b7074fc0b919
+Size (selenium-webdriver-4.7.1.gem) = 5450240 bytes



Home | Main Index | Thread Index | Old Index