@@ -3,6 +3,32 @@ Commit based release not is [release_notes.md](./release_notes.md)
3
3
4
4
Release tags are https://github.com/appium/ruby_lib/releases .
5
5
6
+ ## v9.3.0
7
+ ### 1. Enhancements
8
+ - wait / wait_true need global defaults [ #250 ] ( https://github.com/appium/ruby_lib/issues/250 )
9
+ - You can set default value in ` appium_lib `
10
+ - e.g.: [ lib/appium_lib/driver.rb] ( https://github.com/appium/ruby_lib/blob/34803ef6b7b94df9ef4e147ba8fec5c1d2cfaada/lib/appium_lib/driver.rb#L341-L351 )
11
+ - Problem with delta_x/delta_y in swipe method [ #461 ] ( https://github.com/appium/ruby_lib/issues/461 )
12
+ - Revert _ fix arguments for ` move_to ` in ` swipe ` method._ in Appium v8.2.1
13
+ - ` delta_x/delta_y ` replace to ` offset_* ` for iOS
14
+ - e.g.: ` swipe start_x: start_x, start_y: start_y, end_offset_x: 0, offset_y: -100 `
15
+ - ` delta_x/delta_y ` replace to ` end_* ` for Android
16
+ - e.g.: ` swipe start_x: start_x, start_y: start_y, end_x: start_x, end_y: start_y - 100 `
17
+ - The reason why there are two kind of arguments is the following issue.
18
+ - [ Difference behaviour between iOS and Android regarding with ` swipe ` action #7702 ] ( https://github.com/appium/appium/issues/7702 )
19
+ - Clarify disabling Sauce Labs. #471
20
+ - update documentations
21
+
22
+ ### 2. Bug fixes
23
+ - REQUIRED_VERSION_XCUITEST [ #463 ] ( https://github.com/appium/ruby_lib/issues/463 )
24
+ - find elements except for name attributes in text/s, button/s [ #462 ] ( https://github.com/appium/ruby_lib/issues/462 )
25
+ - Return only ** visible** elements
26
+ - Previously, these methods return ** all** elements.
27
+
28
+ ### 3. Deprecations
29
+ - Problem with delta_x/delta_y in swipe method [ #461 ] ( https://github.com/appium/ruby_lib/issues/461 )
30
+ - ` delta_x/delta_y ` are replaced to ` offset_* ` for iOS and ` end_* ` for Android.
31
+
6
32
## v9.2.0
7
33
### 1. Enhancements
8
34
- update set_wait / no_wait logic #249
0 commit comments