appium_lib 13.0.1 → 13.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 = '13.0.1' unless defined? ::Appium::VERSION
18
- DATE = '2023-06-19' unless defined? ::Appium::DATE
17
+ VERSION = '13.0.2' unless defined? ::Appium::VERSION
18
+ DATE = '2024-01-25' unless defined? ::Appium::DATE
19
19
  end
data/readme.md CHANGED
@@ -32,7 +32,7 @@ We can avoid the class driver with current `ruby_lib`, but if you'd like to impl
32
32
  ### Appium 2
33
33
 
34
34
  ```bash
35
- $ npm install -g appium@next
35
+ $ npm install --location=global appium
36
36
  $ appium driver install xcuitest # proper driver name to install
37
37
  $ appium server
38
38
  ```
data/release_notes.md CHANGED
@@ -1,3 +1,28 @@
1
+ #### v13.0.2 2024-01-25
2
+
3
+ - [9c52fd3](https://github.com/appium/ruby_lib/commit/9c52fd3a8f0ef88d7c4e83f210ab22f817a30632) Release 13.0.2
4
+ - [d14669e](https://github.com/appium/ruby_lib/commit/d14669ebfe091f06e5c248787c753419cee9ed6f) chore: restrict the ruby core version (#1014)
5
+ - [202718c](https://github.com/appium/ruby_lib/commit/202718ca86a99a3443510c9992f21752c090136c) chore: Update rubocop requirement from = 1.60.0 to = 1.60.1 (#1011)
6
+ - [4e93dce](https://github.com/appium/ruby_lib/commit/4e93dce9d7c4d86fb568ca60cfb8d9918f3b20f6) chore: Update rubocop requirement from = 1.59.0 to = 1.60.0 (#1010)
7
+ - [cb2f421](https://github.com/appium/ruby_lib/commit/cb2f42108c600752b120e06917eea3b0a15f2b6f) chore: Update hashdiff requirement from ~> 1.0.0 to ~> 1.1.0 (#1009)
8
+ - [7342c05](https://github.com/appium/ruby_lib/commit/7342c055090e49f03a8c5d5229c1d795d0c60fd5) chore: Update rubocop requirement from = 1.58.0 to = 1.59.0 (#1008)
9
+ - [033eb4f](https://github.com/appium/ruby_lib/commit/033eb4f70cf5a6a5ba015bb86c1f61f2c4ca341e) chore: Update rubocop requirement from = 1.57.2 to = 1.58.0 (#1007)
10
+ - [d3b9c56](https://github.com/appium/ruby_lib/commit/d3b9c56bfa5dbf9939499bd9d1b10639914a4a46) chore: Update rubocop requirement from = 1.57.1 to = 1.57.2 (#1006)
11
+ - [fd8e103](https://github.com/appium/ruby_lib/commit/fd8e103a507e7c6a1815cfb0b590c84cedb8caca) chore: Update rubocop requirement from = 1.57.0 to = 1.57.1 (#1005)
12
+ - [5d3e809](https://github.com/appium/ruby_lib/commit/5d3e809d1e7c05b276b5e19a05822204d4d852fb) chore: Update rubocop requirement from = 1.56.4 to = 1.57.0 (#1004)
13
+ - [e6383f8](https://github.com/appium/ruby_lib/commit/e6383f84c723e08db670bd2b59f88d07da210eb5) chore: Update rubocop requirement from = 1.56.2 to = 1.56.4 (#1003)
14
+ - [c37e87f](https://github.com/appium/ruby_lib/commit/c37e87f6b50e71e99bccf2c3601def497412482c) chore: Update rubocop requirement from = 1.56.1 to = 1.56.2 (#1001)
15
+ - [ee96909](https://github.com/appium/ruby_lib/commit/ee969091251d3fb5ace65ef2d0f0d543880bb4dd) chore: Update rubocop requirement from = 1.56.0 to = 1.56.1 (#1000)
16
+ - [4282704](https://github.com/appium/ruby_lib/commit/42827044578a215ac8cd024f15e56ccfb075a760) chore: Update rubocop requirement from = 1.55.1 to = 1.56.0 (#999)
17
+ - [2083158](https://github.com/appium/ruby_lib/commit/20831586a664e39b51e953fc755860b5d1255a9a) chore: Update rubocop requirement from = 1.55.0 to = 1.55.1 (#998)
18
+ - [7807e5d](https://github.com/appium/ruby_lib/commit/7807e5d2de3803c08a480d2e760b0d7d8957b06d) chore: Update rubocop requirement from = 1.54.2 to = 1.55.0 (#997)
19
+ - [093449f](https://github.com/appium/ruby_lib/commit/093449fbf31eb8751b9c07affa2d4204312bd887) docs: readme.md
20
+ - [e156bbd](https://github.com/appium/ruby_lib/commit/e156bbd5ef012db7a2c0472a7a51764a592b25a6) chore: add CODEOWNERS
21
+ - [00a5b5d](https://github.com/appium/ruby_lib/commit/00a5b5dcef0a3bf53ed52f19ce765ffc9d22990e) chore: Update rubocop requirement from = 1.53.1 to = 1.54.2 (#996)
22
+ - [d5c1caa](https://github.com/appium/ruby_lib/commit/d5c1caad5f2f91f6ecf66dfe137a54ee6693fb22) chore: Update rubocop requirement from = 1.53.0 to = 1.53.1 (#993)
23
+ - [6aa7001](https://github.com/appium/ruby_lib/commit/6aa70019fd7d33fdbc35b292a640708f3a98a6e1) chore: Update rubocop requirement from = 1.52.1 to = 1.53.0 (#992)
24
+
25
+
1
26
  #### v13.0.1 2023-06-19
2
27
 
3
28
  - [777e15d](https://github.com/appium/ruby_lib/commit/777e15d7c0a727cbe25b1e51a3ba7a68759a12db) Release 13.0.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: 13.0.1
4
+ version: 13.0.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: 2023-06-19 00:00:00.000000000 Z
12
+ date: 2024-01-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: appium_lib_core
@@ -20,7 +20,7 @@ dependencies:
20
20
  version: '6'
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '8'
23
+ version: 7.4.0
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  version: '6'
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '8'
33
+ version: 7.4.0
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: nokogiri
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -111,14 +111,14 @@ dependencies:
111
111
  requirements:
112
112
  - - "~>"
113
113
  - !ruby/object:Gem::Version
114
- version: 1.0.0
114
+ version: 1.1.0
115
115
  type: :development
116
116
  prerelease: false
117
117
  version_requirements: !ruby/object:Gem::Requirement
118
118
  requirements:
119
119
  - - "~>"
120
120
  - !ruby/object:Gem::Version
121
- version: 1.0.0
121
+ version: 1.1.0
122
122
  - !ruby/object:Gem::Dependency
123
123
  name: posix-spawn
124
124
  requirement: !ruby/object:Gem::Requirement
@@ -167,14 +167,14 @@ dependencies:
167
167
  requirements:
168
168
  - - '='
169
169
  - !ruby/object:Gem::Version
170
- version: 1.52.1
170
+ version: 1.60.1
171
171
  type: :development
172
172
  prerelease: false
173
173
  version_requirements: !ruby/object:Gem::Requirement
174
174
  requirements:
175
175
  - - '='
176
176
  - !ruby/object:Gem::Version
177
- version: 1.52.1
177
+ version: 1.60.1
178
178
  - !ruby/object:Gem::Dependency
179
179
  name: spec
180
180
  requirement: !ruby/object:Gem::Requirement
@@ -217,6 +217,7 @@ executables: []
217
217
  extensions: []
218
218
  extra_rdoc_files: []
219
219
  files:
220
+ - ".github/CODEOWNERS"
220
221
  - ".github/ISSUE_TEMPLATE.md"
221
222
  - ".github/PULL_REQUEST_TEMPLATE.md"
222
223
  - ".github/dependabot.yml"
@@ -314,7 +315,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
314
315
  - !ruby/object:Gem::Version
315
316
  version: '0'
316
317
  requirements: []
317
- rubygems_version: 3.3.3
318
+ rubygems_version: 3.4.10
318
319
  signing_key:
319
320
  specification_version: 4
320
321
  summary: Ruby library for Appium