Skip to content

Commit

Permalink
Merge pull request #1028 from ably/release/1.6.4
Browse files Browse the repository at this point in the history
Release/1.6.4
  • Loading branch information
lawrence-forooghian authored Mar 8, 2023
2 parents ee999be + 9523091 commit 8eda44c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 6 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Change log

## [1.6.4](https://github.com/ably/ably-asset-tracking-android/tree/v1.6.4)

[Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.6.3...v1.6.4)

**Breaking changes:**

- Subscriber: do not attempt to update presence data when channel is suspended [\#980](https://github.com/ably/ably-asset-tracking-android/issues/980)

**Fixed bugs:**

- ErrorInformation must not enforce non-nullability [\#1014](https://github.com/ably/ably-asset-tracking-android/issues/1014)
- Memory leak connected to the Mapbox SDK [\#810](https://github.com/ably/ably-asset-tracking-android/issues/810)

**Closed issues:**

- Handling invalid values from mapbox [\#1004](https://github.com/ably/ably-asset-tracking-android/issues/1004)
- Remove `ConnectionException` from docstrings of `Publisher.add/track` [\#995](https://github.com/ably/ably-asset-tracking-android/issues/995)
- Handle update presence retries in the WorkerQueue [\#962](https://github.com/ably/ably-asset-tracking-android/issues/962)
- Fix memory leaks on publisher example apps [\#815](https://github.com/ably/ably-asset-tracking-android/issues/815)
- Modify AddTrackableFailedWorker implementation to provide a result [\#546](https://github.com/ably/ably-asset-tracking-android/issues/546)

**Merged pull requests:**

- Upgrade to Mapbox Navigation SDK 2.11.0 [\#1027](https://github.com/ably/ably-asset-tracking-android/pull/1027) ([lawrence-forooghian](https://github.com/lawrence-forooghian))
- Fix subscriber app crashes [\#1026](https://github.com/ably/ably-asset-tracking-android/pull/1026) ([AndyTWF](https://github.com/AndyTWF))
- Update ably\_core\_version to 1.2.26 [\#1022](https://github.com/ably/ably-asset-tracking-android/pull/1022) ([ikbalkaya](https://github.com/ikbalkaya))
- Unify invalid mapbox values handling [\#1011](https://github.com/ably/ably-asset-tracking-android/pull/1011) ([davyskiba](https://github.com/davyskiba))
- Update resolution retry [\#1000](https://github.com/ably/ably-asset-tracking-android/pull/1000) ([davyskiba](https://github.com/davyskiba))
- Fix memory leak issue [\#812](https://github.com/ably/ably-asset-tracking-android/pull/812) ([ikbalkaya](https://github.com/ikbalkaya))

## [1.6.3](https://github.com/ably/ably-asset-tracking-android/tree/v1.6.3)

[Full Changelog](https://github.com/ably/ably-asset-tracking-android/compare/v1.6.2...v1.6.3)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ you can then add the Ably Asset Tracking dependency that you require in your Gra
```groovy
dependencies {
// Publishers, developing in Kotlin, will need the Publishing SDK
implementation 'com.ably.tracking:publishing-sdk:1.6.3'
implementation 'com.ably.tracking:publishing-sdk:1.6.4'
// Subscribers, developing in Kotlin, will need the Subscribing SDK
implementation 'com.ably.tracking:subscribing-sdk:1.6.3'
implementation 'com.ably.tracking:subscribing-sdk:1.6.4'
// Subscribers, developing in Kotlin, can optionally use the UI utilities
implementation 'com.ably.tracking:ui-sdk:1.6.3'
implementation 'com.ably.tracking:ui-sdk:1.6.4'
}
```

Expand Down Expand Up @@ -361,7 +361,7 @@ Firstly, you have to exclude the notification module from Mapbox Navigation SDK

```groovy
// The Ably Asset Tracking Publisher SDK for Android.
implementation ('com.ably.tracking:publishing-sdk:1.6.3')
implementation ('com.ably.tracking:publishing-sdk:1.6.4')
// The Mapbox Navigation SDK.
implementation ('com.mapbox.navigation:android:2.11.0') {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ allprojects {

// version MUST conform to the Semantic Versioning Specification (https://semver.org/) version 2.0.0
// on incrementing this value, ensure to also increment versionCode in android defaultConfig (also in this file)
version = '1.6.3'
version = '1.6.4'

if (githubBuildMetadata) {
version += "+${githubBuildMetadata}"
Expand Down Expand Up @@ -152,7 +152,7 @@ subprojects {
// projects in this repository. Therefore, this same version number is used for SDK and
// example app projects alike.
// - versionCode MUST be incremented by 1 for each release from the main branch
versionCode 40
versionCode 41
versionName version

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand Down

0 comments on commit 8eda44c

Please sign in to comment.