appium_lib_core 3.2.1 → 3.2.2

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: 3ff75e0359bf70b322aa12cd173ef3fea0df195997233905a017e6fe4cf5f38c
4
- data.tar.gz: 114ac1d61568e2cbe0325f8d1b286e9ae1955cb1a48bd9400c7c3e153c859ee9
3
+ metadata.gz: 0052543ea229caa28eb3786c99d3f4c53e62b6795e9d5f6a3b2120548b44a334
4
+ data.tar.gz: c5980602a4c8e6bf84f180aac821b42ce8e27b4ed99490e6e68baf43adf0b374
5
5
  SHA512:
6
- metadata.gz: d5787feb8efa19498e62c01a0458801c69979a32325b61f92367a4dca60c29dfcf7510d88e25d237196332ac63db22593177e6523981b960e28bc6e7c25e7e8a
7
- data.tar.gz: e81f4f201e7fe44c4f97da21738c9399823ca8cdafe86f9f10e81c7d55f7847e37b9471745fbe180cb69aa2a59614d20cf5995835af0001b519aed7013654438
6
+ metadata.gz: 8480b11dbe071b61bf8402ade15e6eae7debe97a592de883d0662a414e82134b5ecc2a1f47342d67d51b21f61e62fbe3c95412029572745c39cf91f75ea8157b
7
+ data.tar.gz: 27cf4e0c9c0546ff01851da8382e2db65fbfbb4ae3599c21d8d04fc88f98bb616077c0c3d22fa2c0c92f5ddc0690d5880b2d828d4cac10c78a48a3c671a0f76f
@@ -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
 
@@ -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 appium opencv4nodejs@4.17.0
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 appium opencv4nodejs@4.17.0
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? || timeout.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.1' unless defined? ::Appium::Core::VERSION
18
- DATE = '2019-07-19' unless defined? ::Appium::Core::DATE
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
@@ -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.1
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-07-18 00:00:00.000000000 Z
11
+ date: 2019-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: selenium-webdriver