File tree 3 files changed +17
-2
lines changed
src/main/java/io/appium/java_client/remote
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,21 @@ dependencies {
66
66
```
67
67
68
68
## Changelog
69
+ * 7.3.0*
70
+ - ** [ ENHANCEMENTS] **
71
+ - Add support for logging custom events on the Appium Server. [ #1262 ] ( https://github.com/appium/java-client/pull/1262 )
72
+ - Update Appium executable detection implementation. [ #1256 ] ( https://github.com/appium/java-client/pull/1256 )
73
+ - Avoid through NPE if any setting value is null. [ #1241 ] ( https://github.com/appium/java-client/pull/1241 )
74
+ - Settings API was improved to accept string names. [ #1240 ] ( https://github.com/appium/java-client/pull/1240 )
75
+ - Switch ` runAppInBackground ` iOS implementation in sync with other platforms. [ #1229 ] ( https://github.com/appium/java-client/pull/1229 )
76
+ - JavaDocs for AndroidMobileCapabilityType was updated. [ #1238 ] ( https://github.com/appium/java-client/pull/1238 )
77
+ - Github Actions were introduced instead of TravisCI. [ #1219 ] ( https://github.com/appium/java-client/pull/1219 )
78
+ - ** [ BUG FIX] **
79
+ - Fix return type of ` getSystemBars ` API. [ #1216 ] ( https://github.com/appium/java-client/pull/1216 )
80
+ - Avoid using ` getSession ` call for capabilities values retrieval [ W3C Support] . [ #1204 ] ( https://github.com/appium/java-client/pull/1204 )
81
+ - Fix pagefactory list element initialisation when parameterised by generic type. [ #1237 ] ( https://github.com/appium/java-client/pull/1237 )
82
+ - Fix AndroidKey commands. [ #1250 ] ( https://github.com/appium/java-client/pull/1250 )
83
+
69
84
* 7.2.0*
70
85
- ** [ DEPENDENCY UPDATES] **
71
86
- ` org.seleniumhq.selenium:selenium-java ` was reverted to stable version 3.141.59. [ #1209 ] ( https://github.com/appium/java-client/pull/1209 )
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ publishing {
136
136
mavenJava(MavenPublication ) {
137
137
groupId = ' io.appium'
138
138
artifactId = ' java-client'
139
- version = ' 7.2 .0'
139
+ version = ' 7.3 .0'
140
140
from components. java
141
141
artifact sourcesJar
142
142
artifact javadocJar
Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ public interface AndroidMobileCapabilityType extends CapabilityType {
355
355
String ADB_EXEC_TIMEOUT = "adbExecTimeout" ;
356
356
357
357
/**
358
- * Sets the locale <a href="https://developer.android.com/reference/java/util/Locale>script</a>.
358
+ * Sets the locale <a href="https://developer.android.com/reference/java/util/Locale" >script</a>.
359
359
* @since 1.10.0
360
360
*/
361
361
String LOCALE_SCRIPT = "localeScript" ;
You can’t perform that action at this time.
0 commit comments