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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31d9c49752d82b04d5e707c2dc6d7aa922805f2aa325542f6def0d7fc8027e9b
4
- data.tar.gz: 82087d07e4233acac2a3d9a7a5cc5a2f68f2c8a6426ea26251f566bc388a7176
3
+ metadata.gz: d65ea4366c372a5373958ea7125c3e29d77ef6a81f8b2a253f35af502862fe45
4
+ data.tar.gz: cd78b843b6fc93c5543f432f8692e6d8fef8811f1b702cef315107fb5fd55c69
5
5
  SHA512:
6
- metadata.gz: 92f1c9963a46f79cf8755330bdc0155d0d392384666a0896bf162ae66323dacdec4cebb547d69b3679ac9ce4f67c07964909faacbbca870a934ffd2dd88b2353
7
- data.tar.gz: '087686b38f0ebea1e1d8cca6ac08c19f1e165a27028c3e648ba0b378681bfc3f011abe57d00b699d88a0ece6dd49e33d9779b27637e1366d2c95cf2d4a30ab16'
6
+ metadata.gz: 5dc042d28bee04bb6b1dc456cdfe64b462c3026ddde762e60fffa540c0c5ad01abb274dd41d0dc250f446d0bc3fcc0b3f59432afb95173cf25841e75ee54bebf
7
+ data.tar.gz: 6e077d34a67bd6eb7a5a456113f35c78734d4f7bc4d3a5ff7f91d288f0bf93d1bb55b1420f44240e2b6c478ba509843d6067f40b447bde468de78388565d66e1
data/CHANGELOG.md CHANGED
@@ -4,8 +4,13 @@ Commit based release not is [release_notes.md](./release_notes.md)
4
4
  Release tags are https://github.com/appium/ruby_lib/releases .
5
5
 
6
6
 
7
+ ## 14.0.0 - 2024-01-25
8
+ - Use appium_lib_core 7.4.0 and up
9
+ - Removed deprecated `export_session` and `export_session_path`
10
+ - Please get the session id via `driver.session_id` intead
11
+
7
12
  ## 13.0.2 - 2024-01-25
8
- - Allow up to ruby lib core 7.3
13
+ - Allow up to appium_lib_core 7.3
9
14
 
10
15
  ## 13.0.1 - 2023-06-19
11
16
  - Ruby 3.0+ is required
data/appium_lib.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
  s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
15
15
  s.require_paths = ['lib']
16
16
 
17
- s.add_runtime_dependency 'appium_lib_core', '>= 6', '< 7.4.0'
17
+ s.add_runtime_dependency 'appium_lib_core', '>= 7.4.0', '< 8'
18
18
  s.add_runtime_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
19
19
  s.add_runtime_dependency 'tomlrb', '>= 1.1', '< 3.0'
20
20