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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea3a67076ea1a3e77e954a92642eed78d0bbcc041dfa0715ff08f911b20e2577
4
- data.tar.gz: 0bc4ae97ff8d252e5201b79aa24f58d29e1e965948bc4f63bd1923cf84d0accd
3
+ metadata.gz: 397737ff25d2a4b17d9a89565d8ff3e2dcd8366b3833467dede6e087721e6fdc
4
+ data.tar.gz: 8886caf5f8d78f218b4a73ade8cb002e45fb0d49fb481f318a0e7bf44571eafe
5
5
  SHA512:
6
- metadata.gz: c6c95c4b5cc8f198f1df0715574bcf76018e976a311c51e498ef9e3b56277e1a9e45b6255ce721a22e415d546fdef1dcd2b02e864553bdbb1290a06ff3ad8264
7
- data.tar.gz: d3a8876c9ee4cbe31552946e870775a9fd0aa833db5c9a8843a56ecfd85bbc92d285b9f4237de365fb8bcb1fe837afee6633c9937010442e5c6e47759899645b
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
@@ -1,5 +1,5 @@
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
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.0
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.0
222
- source_code_uri: https://github.com/titusfortner/webdrivers/tree/v5.3.0
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