appium_lib 9.12.1 → 9.13.0
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 +4 -4
- data/CHANGELOG.md +9 -0
- data/appium_lib.gemspec +1 -1
- data/docs/android_docs.md +178 -178
- data/docs/ios_docs.md +236 -236
- data/docs/migration.md +13 -0
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +7 -0
- metadata +4 -4
data/docs/migration.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
### Breaking Changes in 9.13.0
|
|
2
|
+
Change the results of `app_state`
|
|
3
|
+
|
|
4
|
+
- After
|
|
5
|
+
```
|
|
6
|
+
driver.app_state('com.example.apple-samplecode.UICatalog') #=> :running_in_foreground
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
- Before
|
|
10
|
+
```
|
|
11
|
+
driver.app_state('com.example.apple-samplecode.UICatalog') #=> 1
|
|
12
|
+
```
|
|
13
|
+
|
|
1
14
|
### Breaking Changes in 9.9.0
|
|
2
15
|
Change `start_recording_screen` interface. Please read [documentation](https://github.com/appium/ruby_lib_core/blob/0ba7b1c726f02e11d6daa46481309b1e0e54b00e/lib/appium_lib_core/android/device.rb#L84) for more details.
|
|
3
16
|
|
data/lib/appium_lib/version.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module Appium
|
|
2
2
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
|
3
|
-
VERSION = '9.
|
|
4
|
-
DATE = '2018-05-
|
|
3
|
+
VERSION = '9.13.0'.freeze unless defined? ::Appium::VERSION
|
|
4
|
+
DATE = '2018-05-08'.freeze unless defined? ::Appium::DATE
|
|
5
5
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
#### v9.12.1 2018-05-06
|
|
2
|
+
|
|
3
|
+
- [8ce022f](https://github.com/appium/ruby_lib/commit/8ce022f0f8eabe668230f9aa63a0228d60704c05) [Release 9 12 1 (#780)](https://github.com/appium/ruby_lib/issues/780)
|
|
4
|
+
- [c9b0470](https://github.com/appium/ruby_lib/commit/c9b0470e866c6e70ba689628d4e0924db39f452c) [add no hash but numeric case in wait (#779)](https://github.com/appium/ruby_lib/issues/779)
|
|
5
|
+
- [9a8356b](https://github.com/appium/ruby_lib/commit/9a8356b84198c6c9afb4d1dcf9a9c4067424b4c8) [Add syslog websocket ios re (#777)](https://github.com/appium/ruby_lib/issues/777)
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
#### v9.12.0 2018-04-25
|
|
2
9
|
|
|
3
10
|
- [7a5a12c](https://github.com/appium/ruby_lib/commit/7a5a12ce78ce0a8154ea55ff7f44ecd10ba5b771) [Release 9 12 0 (#775)](https://github.com/appium/ruby_lib/issues/775)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.
|
|
4
|
+
version: 9.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- code@bootstraponline.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-05-
|
|
11
|
+
date: 2018-05-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: appium_lib_core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.
|
|
19
|
+
version: 1.6.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 1.
|
|
26
|
+
version: 1.6.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: tomlrb
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|