Skip to content

Commit 6d66f58

Browse files
authored
Merge pull request #1174 from ably/release/1.4.1
Release v1.4.1
2 parents f76f5a8 + 22ac1d3 commit 6d66f58

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## [1.4.1](https://github.com/ably/ably-java/tree/v1.4.1)
4+
5+
[Full Changelog](https://github.com/ably/ably-java/compare/v1.4.0...v1.4.1)
6+
7+
### What's Changed
8+
9+
* Fixed an error in the log when `data` field in `Message` is `null` in https://github.com/ably/ably-java/pull/1168
10+
* Fixed an issue where presence would not send enter messages when the channel re-attaches after a disconnection in https://github.com/ably/ably-java/pull/1171
11+
* Added`toString` method in `ChannelStateChange` class for improved debugging in https://github.com/ably/ably-java/pull/1169
12+
* Fixed orphan Timer instances on release in https://github.com/ably/ably-java/pull/1173
13+
314
## [1.4.0](https://github.com/ably/ably-java/tree/v1.4.0)
415

516
[Full Changelog](https://github.com/ably/ably-java/compare/v1.3.0...v1.4.0)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate
235235
- 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.
236236
- Add an `implementation` dependency on the `.aar`:
237237
```groovy
238-
implementation files('libs/ably-android-1.4.0.aar')
238+
implementation files('libs/ably-android-1.4.1.aar')
239239
```
240240
- Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies.
241241
- Build/run your application.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ The Java SDK is available as a [Maven dependency](https://mvnrepository.com/arti
5151
<dependency>
5252
<groupId>io.ably</groupId>
5353
<artifactId>ably-java</artifactId>
54-
<version>1.4.0</version>
54+
<version>1.4.1</version>
5555
</dependency>
5656
```
5757

5858
### Install for Gradle:
5959

6060
```gradle
61-
implementation 'io.ably:ably-java:1.4.0'
61+
implementation 'io.ably:ably-java:1.4.1'
6262
implementation 'org.slf4j:slf4j-simple:2.0.7'
6363
```
6464

@@ -113,7 +113,7 @@ Add the following dependency to your `build.gradle` file:
113113

114114
```groovy
115115
dependencies {
116-
runtimeOnly("io.ably:liveobjects:1.4.0")
116+
runtimeOnly("io.ably:liveobjects:1.4.1")
117117
}
118118
```
119119

@@ -140,7 +140,7 @@ Add the following dependency to your `build.gradle` file:
140140

141141
```groovy
142142
dependencies {
143-
runtimeOnly("io.ably:network-client-okhttp:1.4.0")
143+
runtimeOnly("io.ably:network-client-okhttp:1.4.1")
144144
}
145145
```
146146

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=io.ably
2-
VERSION_NAME=1.4.0
2+
VERSION_NAME=1.4.1
33
POM_INCEPTION_YEAR=2015
44
POM_URL=https://github.com/ably/ably-java
55
POM_SCM_URL=https://github.com/ably/ably-java/

lib/src/test/java/io/ably/lib/test/realtime/RealtimeHttpHeaderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public void realtime_websocket_param_test() {
8888
* Defaults.ABLY_AGENT_PARAM, as ultimately the request param has been derived from those values.
8989
*/
9090
assertEquals("Verify correct lib version", requestParameters.get("agent"),
91-
Collections.singletonList("ably-java/1.4.0 jre/" + System.getProperty("java.version")));
91+
Collections.singletonList("ably-java/1.4.1 jre/" + System.getProperty("java.version")));
9292

9393
/* Spec RTN2a */
9494
assertEquals("Verify correct format", requestParameters.get("format"),

0 commit comments

Comments
 (0)