Skip to content

Commit 7fc1939

Browse files
authored
Merge pull request #766 from ably/release/1.2.12
Release/1.2.12
2 parents 07f4c9b + f96dca0 commit 7fc1939

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

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

3+
## [v1.2.12](https://github.com/ably/ably-java/tree/v1.2.12)
4+
5+
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.11...v1.2.12)
6+
7+
**Fixed bugs:**
8+
9+
- Cannot automatically re-enter channel due to mismatched connectionId [\#761](https://github.com/ably/ably-java/issues/761)
10+
- Ensure that weak SSL/TLS protocols are not used [\#749](https://github.com/ably/ably-java/issues/749)
11+
312
## [v1.2.11](https://github.com/ably/ably-java/tree/v1.2.11)
413

514
[Full Changelog](https://github.com/ably/ably-java/compare/v1.2.10...v1.2.11)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ You may wish to make changes to Ably Java or Ably Android, and test it immediate
191191
- 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.
192192
- Add an `implementation` dependency on the `.aar`:
193193
```groovy
194-
implementation files('libs/ably-android-1.2.11.aar')
194+
implementation files('libs/ably-android-1.2.12.aar')
195195
```
196196
- Add the `implementation` (not `testImplementation`) dependencies found in `dependencies.gradle` to your project. This is because the `.aar` does not contain dependencies.
197197
- Build/run your application.

README.md

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

2020
```groovy
21-
implementation 'io.ably:ably-java:1.2.11'
21+
implementation 'io.ably:ably-java:1.2.12'
2222
```
2323

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

2626
```groovy
27-
implementation 'io.ably:ably-android:1.2.11'
27+
implementation 'io.ably:ably-android:1.2.12'
2828
```
2929

3030
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:

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ repositories {
33
}
44

55
group = 'io.ably'
6-
version = '1.2.11'
6+
version = '1.2.12'
77
description = 'Ably java client library'
88

99
tasks.withType(Javadoc) {

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.11 jre/" + System.getProperty("java.version")));
91+
Collections.singletonList("ably-java/1.2.12 jre/" + System.getProperty("java.version")));
9292

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

0 commit comments

Comments
 (0)