appium_lib_core 7.3.1 → 7.3.2

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: 1e36ee532689abb904f023ff2da34ea27e3b1f578d5ebf1d382cb52ec5c9a1d6
4
- data.tar.gz: d237d1de07d8668338e1ee5342e2f021b883bfe8d5c3efa5250e75c591c5c08e
3
+ metadata.gz: 13a5734d69d20cdf77c2548a00fe5aa3a1933e7636d0961d6cedd203dcda4cdf
4
+ data.tar.gz: 5fd94469762b252aab7592bbb898a87910a88734ca8dc36d58ae8bb014cdae7b
5
5
  SHA512:
6
- metadata.gz: f7da289f3516bc45c180328d084acd12aec011cf05c88f0e8f58841f8702eb9612d857bdac8b9ce496c383a61ef75a6025cbbadfb65b173c99567b6d3d173819
7
- data.tar.gz: af0b44244acd9e8fa83d30de6f3e42e88254c1cf3f1dc45c70aadcd979b8a0273775c43eff7b1f33fd6caaa12557b5af5787c9f8cb684c72c052ac6d918d4b19
6
+ metadata.gz: 15456cb665b05358a85c60004430d712302985637caca9a43d951716846c95290fb57c8cfe0eba474018568757106e930584d963a4cada948e4234c7d4296585
7
+ data.tar.gz: 04ff7932530ffb43d9e8e9b13c50252c68cbc13fecacc1bc9625ca002f06fdea355fa4d37856dc9897f90226657c6b49e3764fb48ebea6808ec558ac12d1c7ad
data/CHANGELOG.md CHANGED
@@ -10,6 +10,11 @@ Read `release_notes.md` for commit level details.
10
10
 
11
11
  ### Deprecations
12
12
 
13
+ ## [7.3.2] - 2023-11-08
14
+
15
+ ### Bug fixes
16
+ - Fix default value fo set context
17
+
13
18
  ## [7.3.1] - 2023-11-04
14
19
  ### Enhancements
15
20
  - Bump `selenium-webdriver` max
data/Rakefile CHANGED
@@ -113,28 +113,7 @@ end
113
113
 
114
114
  desc('Execute RuboCop static code analysis')
115
115
  RuboCop::RakeTask.new(:rubocop) do |t|
116
- t.patterns = %w(lib test script)
116
+ t.patterns = %w(lib test)
117
117
  t.options = %w(-D)
118
118
  t.fail_on_error = true
119
119
  end
120
-
121
- desc('print commands which Ruby client has not implemented them yet')
122
- namespace :commands do
123
- require './script/commands'
124
-
125
- desc('Mobile JSON protocol')
126
- task :mjsonwp do |_t, _args|
127
- c = Script::CommandsChecker.new
128
- c.get_mjsonwp_routes
129
- c.get_all_command_path './mjsonwp_routes.js'
130
- c.all_diff_commands_mjsonwp.each { |key, value| puts("command: #{key}, method: #{value}") }
131
- end
132
-
133
- desc('W3C protocol')
134
- task :w3c do |_t, _args|
135
- c = Script::CommandsChecker.new
136
- c.get_mjsonwp_routes
137
- c.get_all_command_path './mjsonwp_routes.js'
138
- c.all_diff_commands_w3c.each { |key, value| puts("command: #{key}, method: #{value}") }
139
- end
140
- end
@@ -472,7 +472,7 @@ module Appium
472
472
  # @driver.set_context "NATIVE_APP"
473
473
  # @driver.context = "NATIVE_APP"
474
474
  #
475
- def context=(context = null)
475
+ def context=(context = nil)
476
476
  @bridge.set_context(context)
477
477
  end
478
478
  alias set_context context=
@@ -42,7 +42,7 @@ module Appium
42
42
  execute(:available_contexts, {}) || []
43
43
  end
44
44
 
45
- def set_context(context = null)
45
+ def set_context(context = nil)
46
46
  execute :set_context, {}, name: context
47
47
  end
48
48
  end # module ImeActions
@@ -14,7 +14,7 @@
14
14
 
15
15
  module Appium
16
16
  module Core
17
- VERSION = '7.3.1' unless defined? ::Appium::Core::VERSION
18
- DATE = '2023-11-04' unless defined? ::Appium::Core::DATE
17
+ VERSION = '7.3.2' unless defined? ::Appium::Core::VERSION
18
+ DATE = '2023-11-08' unless defined? ::Appium::Core::DATE
19
19
  end
20
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_lib_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.3.1
4
+ version: 7.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuaki MATSUO
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-04 00:00:00.000000000 Z
11
+ date: 2023-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: selenium-webdriver