Skip to content

Commit 0486d1b

Browse files
committed
Release 11.1.0
1 parent fd23456 commit 0486d1b

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
Read `release_notes.md` for commit level details.
44

5+
## [11.1.0] - 2025-08-08
6+
- Add WebDriver BiDi support. Please set `webSocketUrl` in the capabilities to enable it.
7+
- `test/functional/android/webdriver/bidi_test.rb` can be an example usage.
8+
- Older versions of the Selenium Ruby bindings may raise exceptions due to missing dependencies.
9+
510
## [11.0.2] - 2025-04-27
611
- Add more sig definitions [#571](https://github.com/appium/ruby_lib_core/pull/571)
712

lib/appium_lib_core/common/base/driver.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def create_bridge(**opts)
8181

8282
raise ::Appium::Core::Error::ArgumentError, "Unable to create a driver with parameters: #{opts}" unless opts.empty?
8383

84-
@has_bidi = capabilities && capabilities['webSocketUrl']
84+
@has_bidi = !!(capabilities && capabilities['webSocketUrl'])
8585
bridge_clzz = @has_bidi ? ::Appium::Core::Base::BiDiBridge : ::Appium::Core::Base::Bridge
8686
bridge = bridge_clzz.new(**bridge_opts)
8787

lib/appium_lib_core/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
module Appium
1616
module Core
17-
VERSION = '11.0.2' unless defined? ::Appium::Core::VERSION
18-
DATE = '2025-04-27' unless defined? ::Appium::Core::DATE
17+
VERSION = '11.1.0' unless defined? ::Appium::Core::VERSION
18+
DATE = '2025-08-08' unless defined? ::Appium::Core::DATE
1919
end
2020
end

0 commit comments

Comments
 (0)