appium_lib 15.2.1 → 15.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 750c26700d454f0c25763e97ee928a5444179c44e78cec36376d45e5abf44719
4
- data.tar.gz: 7d3e581164f1c57ce7b49b332daf8f105fbd7ff0968b14095bc4fd99feff5a41
3
+ metadata.gz: a0bfdc2987c36a4f05fe4f64017e6928aac4e418aeaabbf02499ecf8fd353c6a
4
+ data.tar.gz: 7955dffc472ed16de2d1f763be2c18c607444543ac92d3d6e5c219a81f2d6676
5
5
  SHA512:
6
- metadata.gz: 1a1129d4f761e5fca9960ec3963bb62554fc623e91948aaf67f50e3357492fa5e9fbc678ee62513802b1dc345866c56c69e88e6fc45c9a431a1890e9167f0783
7
- data.tar.gz: 3863036c2f319fbc4943ace7158838dd88ba47535b05e18b950a987d7d08250711a32cdd57a5cbb046e389a4399e3bffc00951722d8095737dbfa3204228a873
6
+ metadata.gz: 35a484c99f93a7f2462eb67c2dbdf91875b8d0a122d27232700e8fd68f62ef4d473a6bee769d8d580c54f7c21d2c63dbd08c6bd23f28b1eb3eb412203c411332
7
+ data.tar.gz: 43803e6084b7bffb9fc1282acef6429829a7019e323f9887176d1534809d458525bbf30ccbb8967ca3b8da8876ff64e0f868a614041d7b3b297ee24bfabc3191
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@ Commit based release not is [release_notes.md](./release_notes.md)
3
3
 
4
4
  Release tags are https://github.com/appium/ruby_lib/releases .
5
5
 
6
+ ## 15.2.2 - 2024-08-06
7
+ - Fix non `app` capability behavior
8
+
6
9
  ## 15.2.1 - 2024-08-03
7
10
  - Fix client side timeout in the default http client
8
11
  - Bump appium_lib_core 9.2.1+ to apply the fix
@@ -269,9 +269,9 @@ module Appium
269
269
 
270
270
  # return the path exists on the local
271
271
  app_path = Driver.get_cap(@core.caps, 'app')
272
- return if !app_path.nil? && File.exist?(app_path)
272
+ return if app_path.nil?
273
+ return if File.exist?(app_path)
273
274
 
274
- # The app file is not exact path
275
275
  @core.caps['app'] = self.class.absolute_app_path opts
276
276
  end
277
277
 
@@ -14,6 +14,6 @@
14
14
 
15
15
  module Appium
16
16
  # Version and Date are defined on the 'Appium' module, not 'Appium::Common'
17
- VERSION = '15.2.1' unless defined? ::Appium::VERSION
18
- DATE = '2024-08-03' unless defined? ::Appium::DATE
17
+ VERSION = '15.2.2' unless defined? ::Appium::VERSION
18
+ DATE = '2024-08-06' unless defined? ::Appium::DATE
19
19
  end
data/release_notes.md CHANGED
@@ -1,3 +1,9 @@
1
+ #### v15.2.2 2024-08-06
2
+
3
+ - [08ac85a](https://github.com/appium/ruby_lib/commit/08ac85ace5a451886431f10367f544708a792954) Release 15.2.2
4
+ - [b741383](https://github.com/appium/ruby_lib/commit/b74138352b7f274d89e0af36efe3d65a574ed502) fix: non-app capability handling (#1039)
5
+
6
+
1
7
  #### v15.2.1 2024-08-03
2
8
 
3
9
  - [693dc16](https://github.com/appium/ruby_lib/commit/693dc167cbbcbe1ab08d1142958207d635c480a3) Release 15.2.1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_lib
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.2.1
4
+ version: 15.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-08-03 00:00:00.000000000 Z
12
+ date: 2024-08-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: appium_lib_core