webdrivers 5.3.0 → 5.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/webdrivers/version.rb +1 -1
- metadata +13 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 397737ff25d2a4b17d9a89565d8ff3e2dcd8366b3833467dede6e087721e6fdc
|
4
|
+
data.tar.gz: 8886caf5f8d78f218b4a73ade8cb002e45fb0d49fb481f318a0e7bf44571eafe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c071fe39335199c0c517072b23022c3af03bc720fc5f164cba7631a1eb9606bc6524b94dc14f938f249ecccb13102c9fe6e351ec36e1a7934e075938b2a515d
|
7
|
+
data.tar.gz: 6c921a9773de2204c6ec247ecbd30a8c0e298d6f4910036934d73746283936df47bce7f8d22a3ced559c37073db9fab9b6dc2792bab3f48b03faa2daf9820a2d
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
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
|
data/lib/webdrivers/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webdrivers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.3.
|
4
|
+
version: 5.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Titus Fortner
|
@@ -218,9 +218,18 @@ licenses:
|
|
218
218
|
metadata:
|
219
219
|
bug_tracker_uri: https://github.com/titusfortner/webdrivers/issues
|
220
220
|
changelog_uri: https://github.com/titusfortner/webdrivers/blob/master/CHANGELOG.md
|
221
|
-
documentation_uri: https://www.rubydoc.info/gems/webdrivers/5.3.
|
222
|
-
source_code_uri: https://github.com/titusfortner/webdrivers/tree/v5.3.
|
223
|
-
post_install_message:
|
221
|
+
documentation_uri: https://www.rubydoc.info/gems/webdrivers/5.3.1
|
222
|
+
source_code_uri: https://github.com/titusfortner/webdrivers/tree/v5.3.1
|
223
|
+
post_install_message: |
|
224
|
+
Webdrivers gem update options
|
225
|
+
*****************************
|
226
|
+
|
227
|
+
Selenium itself now manages drivers by default: https://www.selenium.dev/documentation/selenium_manager
|
228
|
+
* If you are using Ruby 3+ — please update to Selenium 4.11+ and stop requiring this gem
|
229
|
+
* If you are using Ruby 2.6+ and Selenium 4.0+ — this version will work for now
|
230
|
+
* If you use Ruby < 2.6 or Selenium 3, a 6.0 version of this gem with additional support is planned
|
231
|
+
|
232
|
+
Restrict your gemfile to "webdrivers", "= 5.3.0" to stop seeing this message
|
224
233
|
rdoc_options: []
|
225
234
|
require_paths:
|
226
235
|
- lib
|