appium_lib 12.0.0.rc5 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ceaed5e1cb87958cdcafce1b0d7e826dfe569da34a6dd28f7ab2940a13f53e95
4
- data.tar.gz: 4eda629c4b836b7533a330a4936751fa24ce95c5e3d00e4bd4bb59df45679c2d
3
+ metadata.gz: 2add0b5d8bd1d6f72d13b7464ad31196c4ad37fd5ecc4809e0eadc2db9b2201b
4
+ data.tar.gz: f035061f54d471731bf533c6c431fd4453cac17b28402139930d7ad7a0762fa5
5
5
  SHA512:
6
- metadata.gz: 63105145d9f64f44bb1d460dc5363f733320ab3cf0dd292934e24358dda2d561dcf495e23b17f733500a77400404c95128a5b317f0847c9c3de89a3934cdb2e2
7
- data.tar.gz: 4857287ff17c85e001f67379f73aca5cf6a3fba732e6d5cc633df1afc64fdd646f7262a97eff5231ee32b8e823161b8264d559f3896a1bc134aeffed943c45bc
6
+ metadata.gz: 21e2df557b279f120ff24c454be96b97848ac6be5a357952d9df797a4f1ce2ed63e253e6e13c0f8c5df5fe269be4e19abefe578732211a203080d93178ac8c6d
7
+ data.tar.gz: 4c88bea3321224a18fd360a2f2789477147eb5a1698b6eadab524b25f608277d41a1140be89f1b96df4fdda1d4e79f25137f8691dd0cb1beb755d2a022488fe8
data/CHANGELOG.md CHANGED
@@ -7,20 +7,36 @@ Release tags are https://github.com/appium/ruby_lib/releases .
7
7
 
8
8
  ### 1. Enhancements
9
9
 
10
- - Update base [ruby_lib_core client](https://github.com/appium/ruby_lib_core) to v5
11
- - Update base selenium webdriver version to `4.0.0`
12
- - Support only W3C spec as following Selenium v4 client
10
+ ### 2. Bug fixes
11
+
12
+ ### 3. Deprecations
13
+
14
+ ## 12.0.0 - 2021-11-06
15
+ ### 1. Enhancements
16
+
17
+ - Update ruby_lib_core version from v4 to v5. The change affects this library.
18
+ - [Migration from v4 to v5 in ruby_lib_core client](https://github.com/appium/ruby_lib_core#migration-from-v4-to-v5)
19
+ - Base Selenium Ruby binding is now v4
20
+ - Support only W3C WebDriver spec (and a few Appium specific commands)
13
21
  - Support Ruby 2.6+
14
- - `element.id` returns the element id instead of `element.ref`. `element.ref` now returns an array.
22
+ - `element.id` returns the element id instead of `element.ref`
23
+ - `element.ref` now returns an array
15
24
  - Removed `forceMjsonwp` to send only MJSONWP capabilities since Selenium cleint v4 no longer supports MJSONWP
16
- - No longer set default `timeouts` as `0`. ruby_lib_core calls `/timeouts` endpoint only when `appium_lib: { wait: 5 }` is provided explicitly
25
+ - No longer set default `timeouts` as `0`
26
+ - ruby_lib_core will call `/timeouts` endpoint only when `appium_lib: { wait: 5 }` is provided explicitly
17
27
  - Raises `::Appium::Core::Error::ArgumentError` instead of `ArgumentError` for this library specific argument errors
18
28
 
19
29
  ### 2. Deprecations
20
30
  - `TouchAction` and `MultiTouch` are deprecated
21
31
  - Please use W3C actions instead https://github.com/appium/ruby_lib/blob/master/docs/w3c.md
22
- - Other examples: https://github.com/appium/ruby_lib/pull/909
23
- - Removed Selendroid related methods
32
+ - Other examples
33
+ - https://github.com/appium/ruby_lib/pull/909
34
+ - https://github.com/appium/ruby_lib_core/blob/master/CHANGELOG.md#deprecations-1
35
+ - `launch_app`, `close_app` and `reset` are deprecated. Please read [issues#15807](https://github.com/appium/appium/issues/15807) for more details.
36
+ - `activate_app` or a new session request can be alternatives of `launch_app`
37
+ - `terminate_app` or close the session request can be alternatives of `close_app`
38
+ - Close current session and creating a new session, or `terminate_app` and `launch_app` can be alternatives of `reset`
39
+
24
40
 
25
41
  ## 11.1.0 - 2020-12-29 (11.2.0 is the same as this version)
26
42