appium_lib 13.0.2 → 14.0.0
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 +6 -1
- data/appium_lib.gemspec +1 -1
- data/docs/android_docs.md +203 -219
- data/docs/ios_docs.md +241 -257
- data/lib/appium_lib/driver.rb +0 -6
- data/lib/appium_lib/version.rb +1 -1
- data/release_notes.md +7 -0
- metadata +5 -5
data/lib/appium_lib/driver.rb
CHANGED
|
@@ -64,8 +64,6 @@ module Appium
|
|
|
64
64
|
# read http://www.rubydoc.info/github/appium/ruby_lib_core/Appium/Core/Driver
|
|
65
65
|
attr_reader :caps
|
|
66
66
|
attr_reader :custom_url
|
|
67
|
-
attr_reader :export_session
|
|
68
|
-
attr_reader :export_session_path
|
|
69
67
|
attr_reader :default_wait
|
|
70
68
|
attr_reader :appium_port
|
|
71
69
|
attr_reader :appium_device
|
|
@@ -168,8 +166,6 @@ module Appium
|
|
|
168
166
|
|
|
169
167
|
@caps = @core.caps
|
|
170
168
|
@custom_url = @core.custom_url
|
|
171
|
-
@export_session = @core.export_session
|
|
172
|
-
@export_session_path = @core.export_session_path
|
|
173
169
|
@default_wait = @core.default_wait || 0
|
|
174
170
|
@appium_port = @core.port
|
|
175
171
|
@appium_wait_timeout = @core.wait_timeout
|
|
@@ -279,8 +275,6 @@ module Appium
|
|
|
279
275
|
caps: @core.caps,
|
|
280
276
|
automation_name: @core.automation_name,
|
|
281
277
|
custom_url: @core.custom_url,
|
|
282
|
-
export_session: @core.export_session,
|
|
283
|
-
export_session_path: @core.export_session_path,
|
|
284
278
|
default_wait: @default_wait,
|
|
285
279
|
sauce_username: @sauce.username,
|
|
286
280
|
sauce_access_key: @sauce.access_key,
|
data/lib/appium_lib/version.rb
CHANGED
|
@@ -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 = '
|
|
17
|
+
VERSION = '14.0.0' unless defined? ::Appium::VERSION
|
|
18
18
|
DATE = '2024-01-25' unless defined? ::Appium::DATE
|
|
19
19
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
#### v14.0.0 2024-01-25
|
|
2
|
+
|
|
3
|
+
- [50cf980](https://github.com/appium/ruby_lib/commit/50cf980b570acd7d2d95ea64d1d1b0225f96c73b) Release 14.0.0
|
|
4
|
+
- [978ed76](https://github.com/appium/ruby_lib/commit/978ed769120338d817fd69dadeb3894549021245) bump the major version as deprecation code removal
|
|
5
|
+
- [ea3cc5d](https://github.com/appium/ruby_lib/commit/ea3cc5d41653f1df4b8bdad1ec36f142c1430e47) feat: remove deprecated export_session (#1015)
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
#### v13.0.2 2024-01-25
|
|
2
9
|
|
|
3
10
|
- [9c52fd3](https://github.com/appium/ruby_lib/commit/9c52fd3a8f0ef88d7c4e83f210ab22f817a30632) Release 13.0.2
|
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:
|
|
4
|
+
version: 14.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- code@bootstraponline.com
|
|
@@ -17,20 +17,20 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version:
|
|
20
|
+
version: 7.4.0
|
|
21
21
|
- - "<"
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
|
-
version:
|
|
23
|
+
version: '8'
|
|
24
24
|
type: :runtime
|
|
25
25
|
prerelease: false
|
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
27
27
|
requirements:
|
|
28
28
|
- - ">="
|
|
29
29
|
- !ruby/object:Gem::Version
|
|
30
|
-
version:
|
|
30
|
+
version: 7.4.0
|
|
31
31
|
- - "<"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: '8'
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: nokogiri
|
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|