appium_lib 12.0.1 → 12.1.1

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: b5da532f8dcfe731adda73450ac7f59c1d4ea8c684e1dcab772ec01138516689
4
- data.tar.gz: 46b2ff5fdcc90e5a0265bbdbd5e47a89ecfdac0cd3975a06c6f0cd3e6bf3213b
3
+ metadata.gz: cb4141043347d3626549de00580345cabde53856ed0b01cd1bfb9d4471287a02
4
+ data.tar.gz: d013d1439eb09996b20405b66902769c68d4a7b6e11cb47674f546911dc03ed3
5
5
  SHA512:
6
- metadata.gz: 8fdd914873ddc78ecb2fb87f879c5499f6adc43728c8d7b187989c727b20de9b1cd2034e8fde75b2db89a04adf2a9fe6bfd119e70778a4f05754261dcc265e1c
7
- data.tar.gz: e08b30c071d08ebb7de7ada1b8558c7e73a85391e2ff1e766fc781b7b56c6ef409aa8892c36800479586181097e8b6acdc503de591abad656f3b73e3e11a9240
6
+ metadata.gz: 382c590a398266e3d4e01f6a2aec6814e30e89576e427332af3499c44d5994c8b2e9c1b512b3a7db3ff0aa46e41191043890acb7902ba0964757577cdad0c7ff
7
+ data.tar.gz: 4fa2658a6b666c83775b35c9b020d096e04ce891cb7701fba05721551965a15226281c093fb978e562702952793a8a2a94def608569454242cf523a4ccc50378
@@ -11,7 +11,7 @@ jobs:
11
11
  strategy:
12
12
  fail-fast: false
13
13
  matrix:
14
- ruby: [2.6, 2.7, 3.0]
14
+ ruby: [2.7, 3.0]
15
15
 
16
16
  runs-on: ubuntu-latest
17
17
 
data/.rubocop.yml CHANGED
@@ -51,7 +51,7 @@ Style/StringConcatenation:
51
51
  Enabled: false
52
52
  Lint/NonDeterministicRequireOrder:
53
53
  Enabled: false
54
- Gemspec/DateAssignment:
54
+ Gemspec/DeprecatedAttributeAssignment:
55
55
  Enabled: true
56
56
  Layout/LineEndStringConcatenationIndentation:
57
57
  Enabled: true
data/CHANGELOG.md CHANGED
@@ -11,6 +11,26 @@ Release tags are https://github.com/appium/ruby_lib/releases .
11
11
 
12
12
  ### 3. Deprecations
13
13
 
14
+ ## 12.1.1 - 2022-10-19
15
+
16
+ ### 1. Enhancements
17
+
18
+ ### 2. Bug fixes
19
+ - Fix undefined `.warning` method call
20
+
21
+ ### 3. Deprecations
22
+
23
+ ## 12.1.0 - 2022-10-11
24
+
25
+ ### 1. Enhancements
26
+ - Bump minimal ruby_lib_core version
27
+
28
+ ### 2. Bug fixes
29
+
30
+ ### 3. Deprecations
31
+ - Deprecate `Appium::Driver.absolute_app_path`, instead, please set proper `app` capability
32
+ - This aims to reduce client side validation as same as other clients.
33
+
14
34
  ## 12.0.1 - 2022-04-02
15
35
 
16
36
  ### 1. Enhancements
@@ -351,7 +371,6 @@ This change has a breaking change about implicit wait.
351
371
  ### 1. Enhancements
352
372
  - Bump the core library to 1.3.0
353
373
  - The change have one breaking change for `start_recording_screen`(Android)
354
- - Read `docs/migration.md`
355
374
 
356
375
  ### 2. Bug fixes
357
376
 
data/appium_lib.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  require_relative 'lib/appium_lib/version'
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.required_ruby_version = '>= 2.6'
4
+ s.required_ruby_version = '>= 2.7'
5
5
 
6
6
  s.name = 'appium_lib'
7
7
  s.version = Appium::VERSION
@@ -14,17 +14,17 @@ Gem::Specification.new do |s|
14
14
  s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
15
15
  s.require_paths = ['lib']
16
16
 
17
- s.add_runtime_dependency 'appium_lib_core', '~> 5.0'
17
+ s.add_runtime_dependency 'appium_lib_core', '~> 5.5', '>= 5.5.2'
18
18
  s.add_runtime_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
19
19
  s.add_runtime_dependency 'tomlrb', '>= 1.1', '< 3.0'
20
20
 
21
21
  s.add_development_dependency 'appium_thor', '~> 1.1', '>= 1.1.4'
22
- s.add_development_dependency 'fakefs', '~> 1.4.0'
22
+ s.add_development_dependency 'fakefs', '~> 1.8.0'
23
23
  s.add_development_dependency 'hashdiff', '~> 1.0.0'
24
24
  s.add_development_dependency 'posix-spawn', '~> 0.3'
25
25
  s.add_development_dependency 'pry'
26
26
  s.add_development_dependency 'rake', '~> 13.0'
27
- s.add_development_dependency 'rubocop', '1.26.1'
27
+ s.add_development_dependency 'rubocop', '1.36.0'
28
28
  s.add_development_dependency 'spec', '~> 5.3', '>= 5.3.4'
29
29
  s.add_development_dependency 'yard', '~> 0.9.11'
30
30