appium_lib 9.8.5 → 9.9.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 +4 -1
- data/appium_lib.gemspec +1 -1
- data/docs/android_docs.md +175 -175
- data/docs/ios_docs.md +233 -233
- data/docs/migration.md +16 -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,19 @@
|
|
|
1
|
+
### Breaking Changes in 9.9.0
|
|
2
|
+
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
|
+
|
|
4
|
+
- After
|
|
5
|
+
|
|
6
|
+
```ruby
|
|
7
|
+
start_recording_screen(remote_path: nil, user: nil, pass: nil, method: 'PUT', force_restart: nil, video_size: nil, time_limit: '180', bit_rate: '4000000')
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
- Before
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
start_recording_screen(file_path: 'file path in /sdcard/...', video_size: 'videosize', time_limit: '180', bit_rate: '4000000')
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
|
|
1
17
|
### Breaking Changes in 9.6.0
|
|
2
18
|
Raise warning if users call `Appium::Driver.new(opts)`.
|
|
3
19
|
|
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-01-
|
|
3
|
+
VERSION = '9.9.0'.freeze unless defined? ::Appium::VERSION
|
|
4
|
+
DATE = '2018-01-29'.freeze unless defined? ::Appium::DATE
|
|
5
5
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
#### v9.8.5 2018-01-26
|
|
2
|
+
|
|
3
|
+
- [228c5dd](https://github.com/appium/ruby_lib/commit/228c5dd39189b61e4b541852d740fb5d67c8dfbd) [Release 9 8 5 (#753)](https://github.com/appium/ruby_lib/issues/753)
|
|
4
|
+
- [4dc8882](https://github.com/appium/ruby_lib/commit/4dc888211c605ad1d3fc7b38cd8427109698c0cd) [Update CHANGELOG.md (#752)](https://github.com/appium/ruby_lib/issues/752)
|
|
5
|
+
- [d185307](https://github.com/appium/ruby_lib/commit/d185307774bf2a9bc8a3d4e2ef871b0c00e1d73c) [fix Minitest::VERSION error (#751)](https://github.com/appium/ruby_lib/issues/751)
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
#### v9.8.4 2018-01-25
|
|
2
9
|
|
|
3
10
|
- [7b72377](https://github.com/appium/ruby_lib/commit/7b72377d4541c9e7d313631fc543ca93037b892c) [Release 9 8 4 (#749)](https://github.com/appium/ruby_lib/issues/749)
|
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.9.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-01-
|
|
11
|
+
date: 2018-01-29 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.3.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.3.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: tomlrb
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|