From 2af3f81738fc5b40512b0bb233a8cf1c561854a0 Mon Sep 17 00:00:00 2001 From: evgeny Date: Wed, 25 Mar 2026 16:11:34 +0000 Subject: [PATCH 1/2] chore: bump version to 1.7.1 Co-Authored-By: Claude Sonnet 4.6 --- CONTRIBUTING.md | 2 +- README.md | 6 +++--- gradle.properties | 2 +- .../io/ably/lib/test/realtime/RealtimeHttpHeaderTest.java | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a22137143..fb0b4daab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -235,7 +235,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate - Open the directory printed from the output of that command. Inside that folder, get the `ably-android-x.y.z.aar`, and place it your Android project's `libs/` directory. Create this directory if it doesn't exist. - Add an `implementation` dependency on the `.aar`: ```groovy -implementation files('libs/ably-android-1.7.0.aar') +implementation files('libs/ably-android-1.7.1.aar') ``` - Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies. - Build/run your application. diff --git a/README.md b/README.md index c70515c8b..9f06562f0 100644 --- a/README.md +++ b/README.md @@ -51,14 +51,14 @@ The Java SDK is available as a [Maven dependency](https://mvnrepository.com/arti io.ably ably-java - 1.7.0 + 1.7.1 ``` ### Install for Gradle: ```gradle -implementation 'io.ably:ably-java:1.7.0' +implementation 'io.ably:ably-java:1.7.1' implementation 'org.slf4j:slf4j-simple:2.0.7' ``` @@ -113,7 +113,7 @@ Add the following dependency to your `build.gradle` file: ```groovy dependencies { - runtimeOnly("io.ably:liveobjects:1.7.0") + runtimeOnly("io.ably:liveobjects:1.7.1") } ``` diff --git a/gradle.properties b/gradle.properties index 649105373..9eefc3c15 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.ably -VERSION_NAME=1.7.0 +VERSION_NAME=1.7.1 POM_INCEPTION_YEAR=2015 POM_URL=https://github.com/ably/ably-java POM_SCM_URL=https://github.com/ably/ably-java/ diff --git a/lib/src/test/java/io/ably/lib/test/realtime/RealtimeHttpHeaderTest.java b/lib/src/test/java/io/ably/lib/test/realtime/RealtimeHttpHeaderTest.java index 41ba4ae86..cba24d0fb 100644 --- a/lib/src/test/java/io/ably/lib/test/realtime/RealtimeHttpHeaderTest.java +++ b/lib/src/test/java/io/ably/lib/test/realtime/RealtimeHttpHeaderTest.java @@ -88,7 +88,7 @@ public void realtime_websocket_param_test() { * Defaults.ABLY_AGENT_PARAM, as ultimately the request param has been derived from those values. */ assertEquals("Verify correct lib version", requestParameters.get("agent"), - Collections.singletonList("ably-java/1.7.0 jre/" + System.getProperty("java.version"))); + Collections.singletonList("ably-java/1.7.1 jre/" + System.getProperty("java.version"))); /* Spec RTN2a */ assertEquals("Verify correct format", requestParameters.get("format"), From 3ac4fc5c545de86890e52c47571e4a4ed41f0a42 Mon Sep 17 00:00:00 2001 From: evgeny Date: Wed, 25 Mar 2026 16:11:40 +0000 Subject: [PATCH 2/2] docs: update CHANGELOG for 1.7.1 release Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d601704ad..0f8025b63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [1.7.1](https://github.com/ably/ably-java/tree/v1.7.1) + +[Full Changelog](https://github.com/ably/ably-java/compare/v1.7.0...v1.7.1) + +### What's Changed + +- Use server-provided GC grace period for LiveObjects garbage collection [#1158](https://github.com/ably/ably-java/pull/1158) +- Fix channel state updating before connection state listeners are notified (RTL3d1) [#1202](https://github.com/ably/ably-java/pull/1202) + ## [1.7.0](https://github.com/ably/ably-java/tree/v1.7.0) [Full Changelog](https://github.com/ably/ably-java/compare/v1.6.1...v1.7.0)