From 703e1a15dbd62b695f579036a23bca8f91c2a0a3 Mon Sep 17 00:00:00 2001 From: Mykola Mokhnach Date: Wed, 13 Aug 2025 19:46:55 +0200 Subject: [PATCH 1/2] release: v10.0.0 --- CHANGELOG.md | 18 ++++++++++++++++++ gradle.properties | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e20c7874..8232aee0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +_10.0.0_ +- **[DOCUMENTATION]** + - updated maven central release badge [#2316](https://github.com/appium/java-client/pull/2316) + - updated CI badge to use ci.yml workflow [#2317](https://github.com/appium/java-client/pull/2317) +- **[BREAKING CHANGE]** [#2327](https://github.com/appium/java-client/pull/2327) + - Removed all deprecated methods with Selenium's Location and LocationContext (these classes have been removed in Selenium 4.35.0) +- **[ENHANCEMENTS]** + - Proxy commands issues via RemoteWebElement [#2311](https://github.com/appium/java-client/pull/2311) + - Automated Release to Maven Central Repository using JReleaser [#2313](https://github.com/appium/java-client/pull/2313) +- **[BUG FIX]** + - Possible NPE in initBiDi() [#2325](https://github.com/appium/java-client/pull/2325) +- **[DEPENDENCY CHANGE]** + - Bump minimum Selenium version to 4.35.0 [#2327](https://github.com/appium/java-client/pull/2327) + - Bump org.junit.jupiter:junit-jupiter from 5.13.2 to 5.13.3 [#2314](https://github.com/appium/java-client/pull/2314) + - Bump io.github.bonigarcia:webdrivermanager [#2322](https://github.com/appium/java-client/pull/2322) + - Bump com.gradleup.shadow from 8.3.7 to 8.3.8 [#2315](https://github.com/appium/java-client/pull/2315) + - Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0 [#2320](https://github.com/appium/java-client/pull/2320) + _9.5.0_ - **[ENHANCEMENTS]** - Allow extension capability keys to contain dot characters [#2271](https://github.com/appium/java-client/pull/2271) diff --git a/gradle.properties b/gradle.properties index 26ac1907c..6053da655 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,4 +2,4 @@ org.gradle.daemon=true selenium.version=4.35.0 # Please increment the value in a release -appiumClient.version=9.5.0 +appiumClient.version=10.0.0 From 403fa1499cf739b4337737eee19c8af8b9ad4804 Mon Sep 17 00:00:00 2001 From: Mykola Mokhnach Date: Wed, 13 Aug 2025 20:18:55 +0200 Subject: [PATCH 2/2] Add migration doc --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8232aee0d..deb7aca9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _10.0.0_ - **[DOCUMENTATION]** + - Document the migration guide from v9 to v10 [#2331](https://github.com/appium/java-client/pull/2331) - updated maven central release badge [#2316](https://github.com/appium/java-client/pull/2316) - updated CI badge to use ci.yml workflow [#2317](https://github.com/appium/java-client/pull/2317) - **[BREAKING CHANGE]** [#2327](https://github.com/appium/java-client/pull/2327)