appium_lib_core 4.4.0 → 4.4.1
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 +1 -1
- data/lib/appium_lib_core/driver.rb +3 -1
- data/lib/appium_lib_core/version.rb +2 -2
- data/release_notes.md +6 -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: 2e39e0b6e9261085141e53524f03e441f0c7202baa6a4f7d9d726ff96daa1bae
|
|
4
|
+
data.tar.gz: cba4172e3dd7b898c77b59653264fc1376296f9fde3847598b37f0096bd6951d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 137e98f4b2c0d88f2855fb1fb5bd54655c36ba5be7c7d9217ab39ddbb2ebc60e0752d94e925afaef3cf6db2266c91df1a8ba716c7153ae7915a9c903aaa42ed1
|
|
7
|
+
data.tar.gz: 9b1014d972b6c7d302fbc4633d709ec37f3e06ef1bf56c8925f84ef3ad5aed5a1145d0f91c8b00901b33b56bb3694ad5cb75c949d0b0b897fb0359c86911a90d
|
data/CHANGELOG.md
CHANGED
|
@@ -11,7 +11,7 @@ Read `release_notes.md` for commit level details.
|
|
|
11
11
|
### Deprecations
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
## [4.4.0] - 2021-02-13
|
|
14
|
+
## [4.4.1(4.4.0)] - 2021-02-15(2021-02-13)
|
|
15
15
|
|
|
16
16
|
### Enhancements
|
|
17
17
|
- Returns `{}` any errors in `Core#appium_server_version` to prevent errors in some cases
|
|
@@ -460,7 +460,9 @@ module Appium
|
|
|
460
460
|
# @core.appium_server_version #=> {}
|
|
461
461
|
#
|
|
462
462
|
def appium_server_version
|
|
463
|
-
@driver
|
|
463
|
+
return {} if @driver.nil?
|
|
464
|
+
|
|
465
|
+
@driver.remote_status
|
|
464
466
|
rescue StandardError
|
|
465
467
|
# Ignore error case in a case the target appium server
|
|
466
468
|
# does not support `/status` API.
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
module Appium
|
|
16
16
|
module Core
|
|
17
|
-
VERSION = '4.4.
|
|
18
|
-
DATE = '2021-02-
|
|
17
|
+
VERSION = '4.4.1' unless defined? ::Appium::Core::VERSION
|
|
18
|
+
DATE = '2021-02-15' unless defined? ::Appium::Core::DATE
|
|
19
19
|
end
|
|
20
20
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### v4.4.1 2021-02-15
|
|
2
|
+
|
|
3
|
+
- [dc34419](https://github.com/appium/ruby_lib_core/commit/dc34419dfcc4dd8d499a6407d45ab3efe70c2445) Release 4.4.1
|
|
4
|
+
- [3085048](https://github.com/appium/ruby_lib_core/commit/3085048b4816e3415017ebb188e653c8e229a05e) chore: return {} in nil case as well
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
#### v4.4.0 2021-02-13
|
|
2
8
|
|
|
3
9
|
- [06c68fb](https://github.com/appium/ruby_lib_core/commit/06c68fbe3ffdbb7b068d2f71ad6841c66dbabf8f) Release 4.4.0
|
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: 4.4.
|
|
4
|
+
version: 4.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuaki MATSUO
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|