appium_lib 15.3.0 → 16.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 611e91cf2f12498607bf32aca701ad0f283a8b11339a43c57652b4674a4e7432
4
- data.tar.gz: eca9abe363b668f4ee43827b041a54ce1a39bf2fbc891398240d0009bed2ced3
3
+ metadata.gz: 2a2f43a4acf933ff981402fd4de3e1ee280e12f2d3e77beb3df3059c68be424d
4
+ data.tar.gz: a739e7ee7e5e44cf9899b0fd4aaed5cdbea834ae8008b172573fcdbecf952a63
5
5
  SHA512:
6
- metadata.gz: 602b78978860664a89fd28cfa8db75739538fa2bc1913d19d9ce00afa71c8d8b8e4be891c82abbf84f9c4891b67ced0c18c7bf6a4a8a4321d1782812ff4df297
7
- data.tar.gz: d35d828d9faf26671f1fce0d23a7c2d88a8c2b2304522d177593f3bb427482b78da8b6c5d77858d34bf24e0f167e3906b50ac159f2accd4723ab751419322a8f
6
+ metadata.gz: c41c64cc27845273f30c7dcf7bf307eb1c9e8633336ee2b04cc1fd56f17fd6795aa65713994df2df8ca5bd563f970bb4be4f8b07e6d0550036ca4ad5bfccb367
7
+ data.tar.gz: 1980ce0794e079f053c1e9f4faeed818089f0015882bfc19d7c4205d20f126ddaadfedf2185f3692c5c712cc4f040f68d07d97f86c932dda19b7af5b7f4b2a17
@@ -55,7 +55,7 @@ jobs:
55
55
  appium driver install xcuitest
56
56
  appium plugin install images@2.1.8
57
57
  appium plugin install execute-driver
58
- nohup appium --use-plugins=images,execute-driver --relaxed-security --log-timestamp --log-no-colors --base-path=/wd/hub > appium.log &
58
+ nohup appium --use-plugins=images,execute-driver --relaxed-security --log-timestamp --log-no-colors > appium.log &
59
59
 
60
60
  - name: Set up Ruby
61
61
  uses: ruby/setup-ruby@v1
data/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@ 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
+ ## 16.0.1 - 2025-03-16
7
+ - Update appium_lib_core deps version condition
8
+
9
+ ## 16.0.0 - 2025-02-16
10
+ - Use `http://127.0.0.1:4723` as the default url destination instead of `http://127.0.0.1:4723/wd/hub`
11
+ - `--base-path` in appium server may need to drop the `/wd/hub` if configured
12
+
6
13
  ## 15.2.2 - 2024-08-06
7
14
  - Fix non `app` capability behavior
8
15
 
data/Gemfile CHANGED
@@ -16,11 +16,11 @@ source 'https://rubygems.org'
16
16
  gemspec
17
17
 
18
18
  gem 'appium_thor', '~> 2.0'
19
- gem 'fakefs', '~> 2.8.0'
19
+ gem 'fakefs', '~> 3.0.0'
20
20
  gem 'hashdiff', '~> 1.1.0'
21
21
  gem 'minitest', '~> 5.0'
22
22
  gem 'minitest-reporters', '~> 1.1'
23
23
  gem 'pry'
24
24
  gem 'rake', '~> 13.0'
25
- gem 'rubocop', '1.70.0'
25
+ gem 'rubocop', '1.74.0'
26
26
  gem 'yard', '~> 0.9.11'
data/appium_lib.gemspec CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
  s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
14
14
  s.require_paths = ['lib']
15
15
 
16
- s.add_dependency 'appium_lib_core', '~> 9.2', '>= 9.2.1'
16
+ s.add_dependency 'appium_lib_core', '>= 9.2.1', '< 11.0'
17
17
  s.add_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
18
18
  s.add_dependency 'tomlrb', '>= 1.1', '< 3.0'
19
19
 
@@ -427,7 +427,7 @@ module Appium
427
427
  return @core.custom_url if @core.custom_url
428
428
  return @sauce.server_url if @sauce.sauce_server_url?
429
429
 
430
- "http://127.0.0.1:#{@core.port}/wd/hub"
430
+ "http://127.0.0.1:#{@core.port}"
431
431
  end
432
432
 
433
433
  # Restarts the driver
@@ -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.3.0' unless defined? ::Appium::VERSION
18
- DATE = '2025-01-22' unless defined? ::Appium::DATE
17
+ VERSION = '16.0.1' unless defined? ::Appium::VERSION
18
+ DATE = '2025-03-16' unless defined? ::Appium::DATE
19
19
  end
data/readme.md CHANGED
@@ -37,8 +37,7 @@ $ appium driver install xcuitest # proper driver name to install
37
37
  $ appium server
38
38
  ```
39
39
 
40
- > **Note** Please set `server_url` properly like the below since the appium 2
41
- > changed the default WebDriver URL to without `/wd/hub` to follow W3C.
40
+ > **Note** Please set `server_url` properly like the below for Appium v1.
42
41
  > ```
43
42
  > opts = {
44
43
  > caps: {
@@ -47,13 +46,12 @@ $ appium server
47
46
  > app: '/path/to/MyiOS.app'
48
47
  > },
49
48
  > appium_lib: {
50
- > server_url: 'http://127.0.0.1:4723'
49
+ > server_url: 'http://127.0.0.1:4723/wd/hub'
51
50
  > }
52
51
  > }
53
52
  > appium_driver = Appium::Driver.new(opts)
54
53
  > appium_driver.start_driver
55
54
  > ```
56
- > Or please start the appium server with `appium server --base-path=/wd/hub`
57
55
 
58
56
  ### Appium 1
59
57
  ```bash
data/release_notes.md CHANGED
@@ -1,3 +1,24 @@
1
+ #### v16.0.1 2025-03-16
2
+
3
+ - [97de309](https://github.com/appium/ruby_lib/commit/97de309bd6a60b22e2937b51086f7e7491e035cc) Release 16.0.1
4
+ - [8a0bc17](https://github.com/appium/ruby_lib/commit/8a0bc17f0352f158cbb80c44676f90ec1b57e287) chore: allow appium lib core to use 10
5
+ - [ea9f6ab](https://github.com/appium/ruby_lib/commit/ea9f6ab852896a43e01c57ea608334806cc8834f) chore: Update rubocop requirement from 1.73.2 to 1.74.0 (#1062)
6
+ - [7ed65df](https://github.com/appium/ruby_lib/commit/7ed65dfbbacba5093476139629bd828e1b9f67a9) chore: Update rubocop requirement from 1.73.0 to 1.73.2 (#1061)
7
+ - [7c1f16c](https://github.com/appium/ruby_lib/commit/7c1f16c7f3441879c7c1836c4a63336e276da066) chore: Update rubocop requirement from 1.72.2 to 1.73.0 (#1059)
8
+ - [2524c42](https://github.com/appium/ruby_lib/commit/2524c42c626473bdfac846905e42eabf889570bd) chore: Update rubocop requirement from 1.72.1 to 1.72.2 (#1058)
9
+ - [7294b88](https://github.com/appium/ruby_lib/commit/7294b887dd744e107217840144ead4e4a137f9bc) chore: Update rubocop requirement from 1.71.2 to 1.72.1 (#1056)
10
+
11
+
12
+ #### v16.0.0 2025-02-16
13
+
14
+ - [f260936](https://github.com/appium/ruby_lib/commit/f26093663056bee2c170d74283928b517d5071dc) Release 16.0.0
15
+ - [134af92](https://github.com/appium/ruby_lib/commit/134af92efc674377940c82d7f819b4eb98816653) feat: drop `/wd/hub` from the default url config (#1055)
16
+ - [1f7f8cb](https://github.com/appium/ruby_lib/commit/1f7f8cb82ad6499421125d1ca1aabb601af5a869) chore: Update rubocop requirement from 1.71.1 to 1.71.2 (#1054)
17
+ - [fcfc777](https://github.com/appium/ruby_lib/commit/fcfc777eef0b4909896506b83ceeef02702e9811) chore: Update rubocop requirement from 1.71.0 to 1.71.1 (#1053)
18
+ - [34f0695](https://github.com/appium/ruby_lib/commit/34f069526befbd9d449bea27aae0bd2172557abe) chore: Update rubocop requirement from 1.70.0 to 1.71.0 (#1052)
19
+ - [c48681c](https://github.com/appium/ruby_lib/commit/c48681cdc6ccceda612b735457b4496946eab8c6) chore: Update fakefs requirement from ~> 2.8.0 to ~> 3.0.0 (#1050)
20
+
21
+
1
22
  #### v15.3.0 2025-01-22
2
23
 
3
24
  - [030f83b](https://github.com/appium/ruby_lib/commit/030f83ba4d48480f3ac664d0029dc1aae7b90d7d) Release 15.3.0
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.3.0
4
+ version: 16.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com
@@ -9,28 +9,28 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-01-22 00:00:00.000000000 Z
12
+ date: 2025-03-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: appium_lib_core
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
19
- - !ruby/object:Gem::Version
20
- version: '9.2'
21
18
  - - ">="
22
19
  - !ruby/object:Gem::Version
23
20
  version: 9.2.1
21
+ - - "<"
22
+ - !ruby/object:Gem::Version
23
+ version: '11.0'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
- - - "~>"
29
- - !ruby/object:Gem::Version
30
- version: '9.2'
31
28
  - - ">="
32
29
  - !ruby/object:Gem::Version
33
30
  version: 9.2.1
31
+ - - "<"
32
+ - !ruby/object:Gem::Version
33
+ version: '11.0'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: nokogiri
36
36
  requirement: !ruby/object:Gem::Requirement