appium_lib_core 3.2.1 → 3.2.2
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 +10 -0
- data/ci-jobs/functional_test.yml +2 -2
- data/lib/appium_lib_core/common/device/app_management.rb +1 -1
- data/lib/appium_lib_core/version.rb +2 -2
- data/release_notes.md +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0052543ea229caa28eb3786c99d3f4c53e62b6795e9d5f6a3b2120548b44a334
|
|
4
|
+
data.tar.gz: c5980602a4c8e6bf84f180aac821b42ce8e27b4ed99490e6e68baf43adf0b374
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8480b11dbe071b61bf8402ade15e6eae7debe97a592de883d0662a414e82134b5ecc2a1f47342d67d51b21f61e62fbe3c95412029572745c39cf91f75ea8157b
|
|
7
|
+
data.tar.gz: 27cf4e0c9c0546ff01851da8382e2db65fbfbb4ae3599c21d8d04fc88f98bb616077c0c3d22fa2c0c92f5ddc0690d5880b2d828d4cac10c78a48a3c671a0f76f
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,16 @@ Read `release_notes.md` for commit level details.
|
|
|
8
8
|
|
|
9
9
|
### Bug fixes
|
|
10
10
|
|
|
11
|
+
### Deprecations
|
|
12
|
+
|
|
13
|
+
## [3.2.2] - 2019-08-04
|
|
14
|
+
|
|
15
|
+
### Enhancements
|
|
16
|
+
|
|
17
|
+
### Bug fixes
|
|
18
|
+
- Fixed parameters of `remove_app`
|
|
19
|
+
|
|
20
|
+
### Deprecations
|
|
11
21
|
|
|
12
22
|
## [3.2.1] - 2019-07-19
|
|
13
23
|
|
data/ci-jobs/functional_test.yml
CHANGED
|
@@ -95,7 +95,7 @@ jobs:
|
|
|
95
95
|
parameters:
|
|
96
96
|
xcodeVersion: ${{ parameters.xcodeForIOS }}
|
|
97
97
|
- template: ./functional/run_appium.yml
|
|
98
|
-
- script: npm install -g
|
|
98
|
+
- script: npm install -g opencv4nodejs@4.17.0
|
|
99
99
|
displayName: Install opencv4nodejs@4.17.0
|
|
100
100
|
- script: bundle exec rake test:func:ios TESTS=test/functional/ios/ios/device_wda_attachment_test.rb,test/functional/ios/ios/image_comparison_test.rb
|
|
101
101
|
displayName: Run tests
|
|
@@ -203,7 +203,7 @@ jobs:
|
|
|
203
203
|
steps:
|
|
204
204
|
- template: ./functional/android_setup.yml
|
|
205
205
|
- template: ./functional/run_appium.yml
|
|
206
|
-
- script: npm install -g
|
|
206
|
+
- script: npm install -g opencv4nodejs@4.17.0
|
|
207
207
|
displayName: Install opencv4nodejs@4.17.0
|
|
208
208
|
- script: bundle exec rake test:func:android TESTS=test/functional/android/android/image_comparison_test.rb,test/functional/android/android/mjpeg_server_test.rb
|
|
209
209
|
displayName: Run tests
|
|
@@ -62,7 +62,7 @@ module Appium
|
|
|
62
62
|
# required: [['appId'], ['bundleId']]
|
|
63
63
|
args = { appId: id }
|
|
64
64
|
|
|
65
|
-
args[:options] = {} unless keep_data.nil?
|
|
65
|
+
args[:options] = {} unless keep_data.nil? && timeout.nil?
|
|
66
66
|
args[:options][:keepData] = keep_data unless keep_data.nil?
|
|
67
67
|
args[:options][:timeout] = timeout unless timeout.nil?
|
|
68
68
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
module Appium
|
|
16
16
|
module Core
|
|
17
|
-
VERSION = '3.2.
|
|
18
|
-
DATE = '2019-
|
|
17
|
+
VERSION = '3.2.2' unless defined? ::Appium::Core::VERSION
|
|
18
|
+
DATE = '2019-08-04' unless defined? ::Appium::Core::DATE
|
|
19
19
|
end
|
|
20
20
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
#### v3.2.2 2019-08-04
|
|
2
|
+
|
|
3
|
+
- [9679bb0](https://github.com/appium/ruby_lib_core/commit/9679bb0ef49435e8afd7a5688e90ca74447dbbd6) Release 3.2.2
|
|
4
|
+
- [73b2fd7](https://github.com/appium/ruby_lib_core/commit/73b2fd7cd803e55e8df23252b0d9be2ca7d4d747) tweak ci env, fix a control flow (#232)
|
|
5
|
+
- [9951695](https://github.com/appium/ruby_lib_core/commit/99516950f88c123107f3ee94325a5f64f4985b1d) replace the path
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
#### v3.2.1 2019-07-19
|
|
2
9
|
|
|
3
10
|
- [e30a905](https://github.com/appium/ruby_lib_core/commit/e30a90549ac9dd6b0019370ce6abb8a08fc88e82) Release 3.2.1
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuaki MATSUO
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-08-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|