appium_lib 16.0.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile +1 -1
- data/appium_lib.gemspec +1 -1
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +11 -0
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a2f43a4acf933ff981402fd4de3e1ee280e12f2d3e77beb3df3059c68be424d
|
4
|
+
data.tar.gz: a739e7ee7e5e44cf9899b0fd4aaed5cdbea834ae8008b172573fcdbecf952a63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c41c64cc27845273f30c7dcf7bf307eb1c9e8633336ee2b04cc1fd56f17fd6795aa65713994df2df8ca5bd563f970bb4be4f8b07e6d0550036ca4ad5bfccb367
|
7
|
+
data.tar.gz: 1980ce0794e079f053c1e9f4faeed818089f0015882bfc19d7c4205d20f126ddaadfedf2185f3692c5c712cc4f040f68d07d97f86c932dda19b7af5b7f4b2a17
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@ 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
|
+
|
6
9
|
## 16.0.0 - 2025-02-16
|
7
10
|
- Use `http://127.0.0.1:4723` as the default url destination instead of `http://127.0.0.1:4723/wd/hub`
|
8
11
|
- `--base-path` in appium server may need to drop the `/wd/hub` if configured
|
data/Gemfile
CHANGED
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', '
|
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
|
|
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 = '16.0.
|
18
|
-
DATE = '2025-
|
17
|
+
VERSION = '16.0.1' unless defined? ::Appium::VERSION
|
18
|
+
DATE = '2025-03-16' unless defined? ::Appium::DATE
|
19
19
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,14 @@
|
|
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
|
+
|
1
12
|
#### v16.0.0 2025-02-16
|
2
13
|
|
3
14
|
- [f260936](https://github.com/appium/ruby_lib/commit/f26093663056bee2c170d74283928b517d5071dc) Release 16.0.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: 16.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-
|
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
|