File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change
1
+ # 5.3.1 (2023-07-31)
2
+ * Add post_install_message to explain status of gem
3
+
1
4
# 5.3.0 (2023-07-31)
2
5
* Add support for Chrome for Testing drivers ([ #237 ] ( https://github.com/titusfortner/webdrivers/issues/249 ) , thanks sadahiro-ono)
3
6
* Support is restricted to Selenium 4.0 - 4.10 to encourage people to update to Selenium 4.11
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module Webdrivers
4
- VERSION = '5.3.0 '
4
+ VERSION = '5.3.1 '
5
5
end
Original file line number Diff line number Diff line change @@ -39,4 +39,16 @@ Gem::Specification.new do |s|
39
39
s . add_runtime_dependency 'nokogiri' , '~> 1.6'
40
40
s . add_runtime_dependency 'rubyzip' , '>= 1.3.0'
41
41
s . add_runtime_dependency 'selenium-webdriver' , '~> 4.0' , '< 4.11'
42
+
43
+ s . post_install_message = <<~ENDBANNER
44
+ Webdrivers gem update options
45
+ *****************************
46
+
47
+ Selenium itself now manages drivers by default: https://www.selenium.dev/documentation/selenium_manager
48
+ * If you are using Ruby 3+ — please update to Selenium 4.11+ and stop requiring this gem
49
+ * If you are using Ruby 2.6+ and Selenium 4.0+ — this version will work for now
50
+ * If you use Ruby < 2.6 or Selenium 3, a 6.0 version of this gem with additional support is planned
51
+
52
+ Restrict your gemfile to "webdrivers", "= 5.3.0" to stop seeing this message
53
+ ENDBANNER
42
54
end
You can’t perform that action at this time.
0 commit comments