Skip to content

Commit

Permalink
updates for 5.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jul 31, 2023
1 parent 415c40c commit 728bb73
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 23 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 5.3.0 (2023-07-31)
* Add support for Chrome for Testing drivers ([#237](https://github.com/titusfortner/webdrivers/issues/249), thanks sadahiro-ono)
* Support is restricted to Selenium 4.0 - 4.10 to encourage people to update to Selenium 4.11

# 5.2.0 (2022-09-29)
* `chromedriver` - Fix downloading on M1 macs from version 106.0.5249.61 ([#237](https://github.com/titusfortner/webdrivers/issues/237), thanks jmccure)

Expand Down
4 changes: 2 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(The MIT License)

Copyright (c) 2017-2019: Titus Fortner
Copyright (c) 2019: Lakshya Kapoor, Thomas Walpole
Copyright (c) 2017-2023: Titus Fortner
Copyright (c) 2019-2023: Lakshya Kapoor, Thomas Walpole

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
32 changes: 12 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,23 @@ Run Selenium tests more easily with automatic installation and updates for all s

With Google's new [Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) project,
and Selenium's new [Selenium Manager](https://www.selenium.dev/documentation/selenium_manager/) feature,
what is required of this gem has changed..
what is required of this gem has changed.

If you can update to to the latest version of Selenium, please do so and stop requiring this gem.
Selenium 4.10 will work for Chrome v115 (ignore the warning), and Selenium 4.11 will work for everything going forward.
Please provide feedback or raise issues with [Selenium Project](https://github.com/SeleniumHQ/selenium/issues/new/choose)
If you can update to to the latest version of Selenium (4.11+), please do so and stop requiring this gem.
Provide feedback or raise issues to [Selenium Project](https://github.com/SeleniumHQ/selenium/issues/new/choose)

If you cannot upgrade to the latest version of Selenium, you can set the required version of chromedriver to v114
(`Webdrivers.required_version = '114.0.5735.90'`) and
[Disable the build check](https://www.selenium.dev/documentation/webdriver/browsers/chrome/#disabling-build-check).
This is not guaranteed to continue working and will not receive bug fixes.

The current plan:
If you cannot upgrade to Selenium 4.11, Webdrivers 5.3.0 will continue to support Ruby 2.6+ and Selenium 4.0 - 4.10

**Webdrivers 5.3.0**
* Merge https://github.com/titusfortner/webdrivers/pull/249 to get a basic fix for Chrome for Testing support
* Set the maximum Selenium version to 4.10
* Continue to support Ruby 2.6+ and Selenium 4+

**Webdrivers 5.3.1**
* Add a `#post_install_message` telling people to update to Selenium 4.11 and not to require this gem
If you are using an older version of webdrivers gem, and cannot upgrade, you can set
the required version of chromedriver to v114 (`Webdrivers.required_version = '114.0.5735.90'`) and
[Disable the build check](https://www.selenium.dev/documentation/webdriver/browsers/chrome/#disabling-build-check).
This is not guaranteed to continue working and will not receive bug fixes.

**Webdrivers 6.0**
* Create a `selenium-manager.gem` based off of https://github.com/SeleniumHQ/selenium/pull/12429
* Re-implement this gem to wrap `selenium-manager.gem`
* Add support for Selenium 3.142 and investigate support for Ruby 2.4 / 2.5
To provide support for Selenium 3 and Ruby < 2.6 a 6.0 version is planned. It requires:
* Creating a `selenium-manager.gem` based off of https://github.com/SeleniumHQ/selenium/pull/12429
* Re-implementing this gem to wrap `selenium-manager.gem`
* Ensuring compatible with older versions of Selenium & Ruby

If anyone would like to help get Webdrivers 6 working, please let us know.

Expand Down
2 changes: 1 addition & 1 deletion lib/webdrivers/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Webdrivers
VERSION = '5.2.0'
VERSION = '5.3.0'
end

0 comments on commit 728bb73

Please sign in to comment.