appium_lib_core 11.1.0 → 11.1.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: 701a3cbc303b81ada16130a28d1a4d2a42f96547b474cb612ef7d64e221fa1c9
4
- data.tar.gz: 6af95a9abdb55ba70a678b007dae0d1f2a585140e80ffc19c90f7e271f88de19
3
+ metadata.gz: 644a3a9d74789b47ce2eec29dbb617beaa63316fb3d6e51a46574109751592d9
4
+ data.tar.gz: 10eecbb5e22544478cd0de674cee969556f5996dfbb015f0014a7232fd551d41
5
5
  SHA512:
6
- metadata.gz: d0368fce9366a63d848c6ea3cea893a2df6a0a43a9d8b747affd0da66cd52a127a187df4f037ed628a055e010d7616f061a664df9a17f39971619ba13babf89b
7
- data.tar.gz: b654930fcfb681003d8163c8ed7aed461b7633799e26c70bd9499fbbc336927ca9f87bf25254c1188960e88eade1370460557a83802a1799509de9c3e78144b5
6
+ metadata.gz: f5c30750553e49bcfef55ccefd3842d006f08fef508a8f966fff7a882e334c5a13b7f34d28497f2ceadc74bdfa4e2b443bf4fca41730ff9eaa024893a184dae7
7
+ data.tar.gz: 887fe2d2a19f5c277119ab74b511bad76ef6316693c76b9a51c8308d882ab5e591ee068c7d715d73a474eb0788b456c555bba732041be49827e4ee9e4bcdc87b
data/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  Read `release_notes.md` for commit level details.
4
4
 
5
- ## [11.1.0] - 2025-08-08
5
+ ## [11.1.0,11.1.1] - 2025-08-08
6
6
  - Add WebDriver BiDi support. Please set `webSocketUrl` in the capabilities to enable it.
7
7
  - `test/functional/android/webdriver/bidi_test.rb` can be an example usage.
8
8
  - Older versions of the Selenium Ruby bindings may raise exceptions due to missing dependencies.
@@ -81,7 +81,7 @@ module Appium
81
81
 
82
82
  raise ::Appium::Core::Error::ArgumentError, "Unable to create a driver with parameters: #{opts}" unless opts.empty?
83
83
 
84
- @has_bidi = !!(capabilities && capabilities['webSocketUrl'])
84
+ @has_bidi = capabilities && capabilities['webSocketUrl'] ? true : false
85
85
  bridge_clzz = @has_bidi ? ::Appium::Core::Base::BiDiBridge : ::Appium::Core::Base::Bridge
86
86
  bridge = bridge_clzz.new(**bridge_opts)
87
87
 
@@ -14,7 +14,7 @@
14
14
 
15
15
  module Appium
16
16
  module Core
17
- VERSION = '11.1.0' unless defined? ::Appium::Core::VERSION
17
+ VERSION = '11.1.1' unless defined? ::Appium::Core::VERSION
18
18
  DATE = '2025-08-08' unless defined? ::Appium::Core::DATE
19
19
  end
20
20
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_lib_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.1.0
4
+ version: 11.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuaki MATSUO