Skip to content

Commit aad1c87

Browse files
authored
Merge pull request #1049 from ably/release/1.2.46
Release/1.2.46
2 parents 6c0ffcf + f5b37a4 commit aad1c87

5 files changed

Lines changed: 21 additions & 6 deletions

File tree

CHANGELOG.md

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

3+
## [1.2.46](https://github.com/ably/ably-java/tree/v1.2.46)
4+
5+
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.45...v1.2.46)
6+
7+
**Implemented enhancements:**
8+
9+
- New experimental `Message` fields (`action`, `serial`, `createdAt`) have been added.
10+
**Note:** These fields are not stable and are introduced to support the [Chat SDK](https://github.com/ably/ably-chat-kotlin).
11+
Use with caution, as they may change in future releases.
12+
13+
**Merged pull requests:**
14+
15+
- \[ECO-5139\] feat: add `action` and `serial` fields [\#1048](https://github.com/ably/ably-java/pull/1048) ([ttypic](https://github.com/ttypic))
16+
17+
318
## [1.2.45](https://github.com/ably/ably-java/tree/v1.2.45)
419

520
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.44...v1.2.45)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate
219219
- 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.
220220
- Add an `implementation` dependency on the `.aar`:
221221
```groovy
222-
implementation files('libs/ably-android-1.2.45.aar')
222+
implementation files('libs/ably-android-1.2.46.aar')
223223
```
224224
- Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies.
225225
- Build/run your application.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ Include the library by adding an `implementation` reference to `dependencies` bl
2020
For [Java](https://mvnrepository.com/artifact/io.ably/ably-java/latest):
2121

2222
```groovy
23-
implementation 'io.ably:ably-java:1.2.45'
23+
implementation 'io.ably:ably-java:1.2.46'
2424
```
2525

2626
For [Android](https://mvnrepository.com/artifact/io.ably/ably-android/latest):
2727

2828
```groovy
29-
implementation 'io.ably:ably-android:1.2.45'
29+
implementation 'io.ably:ably-android:1.2.46'
3030
```
3131

3232
The library is hosted on [Maven Central](https://mvnrepository.com/repos/central), so you need to ensure that the repository is referenced also; IDEs will typically include this by default:
@@ -512,7 +512,7 @@ Add the following dependency to your `build.gradle` file:
512512

513513
```groovy
514514
dependencies {
515-
runtimeOnly("io.ably:network-client-okhttp:1.2.45")
515+
runtimeOnly("io.ably:network-client-okhttp:1.2.46")
516516
}
517517
```
518518

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.2.45
2+
VERSION_NAME=1.2.46
33

44
POM_INCEPTION_YEAR=2015
55
POM_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.2.45 jre/" + System.getProperty("java.version")));
91+
Collections.singletonList("ably-java/1.2.46 jre/" + System.getProperty("java.version")));
9292

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

0 commit comments

Comments
 (0)