appium_lib 15.3.0 → 16.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 611e91cf2f12498607bf32aca701ad0f283a8b11339a43c57652b4674a4e7432
4
- data.tar.gz: eca9abe363b668f4ee43827b041a54ce1a39bf2fbc891398240d0009bed2ced3
3
+ metadata.gz: a18c99c26e342420e190e27ef5bf9072eadeb58192a037c7026d0a4ee6dcd1a5
4
+ data.tar.gz: bf40c1e9757737a98844a3af8d966c416b08e4d37f81b0252943249489cc3ccb
5
5
  SHA512:
6
- metadata.gz: 602b78978860664a89fd28cfa8db75739538fa2bc1913d19d9ce00afa71c8d8b8e4be891c82abbf84f9c4891b67ced0c18c7bf6a4a8a4321d1782812ff4df297
7
- data.tar.gz: d35d828d9faf26671f1fce0d23a7c2d88a8c2b2304522d177593f3bb427482b78da8b6c5d77858d34bf24e0f167e3906b50ac159f2accd4723ab751419322a8f
6
+ metadata.gz: 47fef4df48f746052164df391d1dc8b5524c3473c3321bb7d4eb9d0fccb67070e98480ae0310971d4749f377141dd383ba33931ac69baed0c841ee49cdbbbfcc
7
+ data.tar.gz: 44a35f652c0b3bbe1affdf3292dbd24b5799b3e479194ffa853f5eca53ec782be4a8063814c5d8bb20643fd2a16216f57a356827b9f63f5ad524d8e86fdfd4a9
@@ -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,10 @@ 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.0 - 2025-02-16
7
+ - Use `http://127.0.0.1:4723` as the default url destination instead of `http://127.0.0.1:4723/wd/hub`
8
+ - `--base-path` in appium server may need to drop the `/wd/hub` if configured
9
+
6
10
  ## 15.2.2 - 2024-08-06
7
11
  - Fix non `app` capability behavior
8
12
 
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.71.2'
26
26
  gem 'yard', '~> 0.9.11'
@@ -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.0' unless defined? ::Appium::VERSION
18
+ DATE = '2025-02-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,13 @@
1
+ #### v16.0.0 2025-02-16
2
+
3
+ - [f260936](https://github.com/appium/ruby_lib/commit/f26093663056bee2c170d74283928b517d5071dc) Release 16.0.0
4
+ - [134af92](https://github.com/appium/ruby_lib/commit/134af92efc674377940c82d7f819b4eb98816653) feat: drop `/wd/hub` from the default url config (#1055)
5
+ - [1f7f8cb](https://github.com/appium/ruby_lib/commit/1f7f8cb82ad6499421125d1ca1aabb601af5a869) chore: Update rubocop requirement from 1.71.1 to 1.71.2 (#1054)
6
+ - [fcfc777](https://github.com/appium/ruby_lib/commit/fcfc777eef0b4909896506b83ceeef02702e9811) chore: Update rubocop requirement from 1.71.0 to 1.71.1 (#1053)
7
+ - [34f0695](https://github.com/appium/ruby_lib/commit/34f069526befbd9d449bea27aae0bd2172557abe) chore: Update rubocop requirement from 1.70.0 to 1.71.0 (#1052)
8
+ - [c48681c](https://github.com/appium/ruby_lib/commit/c48681cdc6ccceda612b735457b4496946eab8c6) chore: Update fakefs requirement from ~> 2.8.0 to ~> 3.0.0 (#1050)
9
+
10
+
1
11
  #### v15.3.0 2025-01-22
2
12
 
3
13
  - [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.0
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: 2025-01-22 00:00:00.000000000 Z
12
+ date: 2025-02-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: appium_lib_core