Skip to content

Commit c98ff29

Browse files
Fix java doc, Update release notes and Release 7.3.0
1 parent fcf8581 commit c98ff29

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,21 @@ dependencies {
6666
```
6767

6868
## 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+
6984
*7.2.0*
7085
- **[DEPENDENCY UPDATES]**
7186
- `org.seleniumhq.selenium:selenium-java` was reverted to stable version 3.141.59. [#1209](https://github.com/appium/java-client/pull/1209)

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ publishing {
136136
mavenJava(MavenPublication) {
137137
groupId = 'io.appium'
138138
artifactId = 'java-client'
139-
version = '7.2.0'
139+
version = '7.3.0'
140140
from components.java
141141
artifact sourcesJar
142142
artifact javadocJar

src/main/java/io/appium/java_client/remote/AndroidMobileCapabilityType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ public interface AndroidMobileCapabilityType extends CapabilityType {
355355
String ADB_EXEC_TIMEOUT = "adbExecTimeout";
356356

357357
/**
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>.
359359
* @since 1.10.0
360360
*/
361361
String LOCALE_SCRIPT = "localeScript";

0 commit comments

Comments
 (0)