From 821ede91a5c761e5ef5b68539a5244e47f5ed414 Mon Sep 17 00:00:00 2001 From: evgeny Date: Thu, 4 Apr 2024 15:00:44 +0100 Subject: [PATCH 1/4] chore: bump ably-cocoa to 1.2.29 --- example/ios/Podfile.lock | 12 ++++++------ ios/ably_flutter.podspec | 2 +- test_integration/ios/Podfile.lock | 12 ++++++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 89a7c91fc..fd0504a4d 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1,9 +1,9 @@ PODS: - - Ably (1.2.27): + - Ably (1.2.29): - AblyDeltaCodec (= 1.3.3) - msgpack (= 0.4.0) - ably_flutter (1.2.28): - - Ably (= 1.2.27) + - Ably (= 1.2.29) - Flutter - AblyDeltaCodec (1.3.3) - device_info_plus (0.0.1): @@ -44,11 +44,11 @@ EXTERNAL SOURCES: :path: ".symlinks/plugins/fluttertoast/ios" SPEC CHECKSUMS: - Ably: 8e3131b7432a60579937626ba2536e50283bd215 - ably_flutter: a9f4e3c638e7e2186335ef0477b463d7af2f8eb9 + Ably: 2a5dc2bbb7a3fe65447f4791237264795c470b8e + ably_flutter: 3a8981fba0393387488f9c633956110dd7085de3 AblyDeltaCodec: add5d06a756b3581b12aab5b5500a320b8c55bea device_info_plus: e5c5da33f982a436e103237c0c85f9031142abed - Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 + Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 flutter_local_notifications: 0c0b1ae97e741e1521e4c1629a459d04b9aec743 fluttertoast: 6122fa75143e992b1d3470f61000f591a798cc58 msgpack: c85f6251873059738472ae136951cec5f30f3251 @@ -56,4 +56,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 1e2c1b20be30d932ecf4aea37c7fa8602c49c7fa -COCOAPODS: 1.15.2 +COCOAPODS: 1.14.3 diff --git a/ios/ably_flutter.podspec b/ios/ably_flutter.podspec index 29ffc9ef1..924ad96fe 100644 --- a/ios/ably_flutter.podspec +++ b/ios/ably_flutter.podspec @@ -18,7 +18,7 @@ Pod::Spec.new do |s| s.source_files = 'Classes/**/*' s.public_header_files = 'Classes/**/*.h' s.dependency 'Flutter' - s.dependency 'Ably', '1.2.27' + s.dependency 'Ably', '1.2.29' s.platform = :ios s.ios.deployment_target = '10.0' diff --git a/test_integration/ios/Podfile.lock b/test_integration/ios/Podfile.lock index 9bc43ba3a..52f7f7e41 100644 --- a/test_integration/ios/Podfile.lock +++ b/test_integration/ios/Podfile.lock @@ -1,9 +1,9 @@ PODS: - - Ably (1.2.27): + - Ably (1.2.29): - AblyDeltaCodec (= 1.3.3) - msgpack (= 0.4.0) - ably_flutter (1.2.28): - - Ably (= 1.2.27) + - Ably (= 1.2.29) - Flutter - AblyDeltaCodec (1.3.3) - Flutter (1.0.0) @@ -26,12 +26,12 @@ EXTERNAL SOURCES: :path: Flutter SPEC CHECKSUMS: - Ably: 8e3131b7432a60579937626ba2536e50283bd215 - ably_flutter: a9f4e3c638e7e2186335ef0477b463d7af2f8eb9 + Ably: 2a5dc2bbb7a3fe65447f4791237264795c470b8e + ably_flutter: 3a8981fba0393387488f9c633956110dd7085de3 AblyDeltaCodec: add5d06a756b3581b12aab5b5500a320b8c55bea - Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 + Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 msgpack: c85f6251873059738472ae136951cec5f30f3251 PODFILE CHECKSUM: f2c6cc511583caab2c65ac3f5766428391d93d34 -COCOAPODS: 1.15.2 +COCOAPODS: 1.14.3 From 21fc4582b3b0fea935925fce9cd77dd3e625a214 Mon Sep 17 00:00:00 2001 From: evgeny Date: Thu, 4 Apr 2024 15:00:56 +0100 Subject: [PATCH 2/4] chore: bump ably-java to 1.2.36 --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index e56d4b71f..f3aa997ec 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -23,7 +23,7 @@ apply plugin: 'com.android.library' dependencies { // https://github.com/ably/ably-java/ - implementation 'io.ably:ably-android:1.2.35' + implementation 'io.ably:ably-android:1.2.36' // https://firebase.google.com/docs/cloud-messaging/android/client implementation 'com.google.firebase:firebase-messaging:23.0.4' From c351af21eb14445fae4c310d999ff1e2e31179bb Mon Sep 17 00:00:00 2001 From: evgeny Date: Thu, 4 Apr 2024 15:04:02 +0100 Subject: [PATCH 3/4] chore: bump ably-flutter version to 1.2.29 --- README.md | 2 +- example/ios/Podfile.lock | 4 ++-- example/pubspec.lock | 2 +- pubspec.yaml | 2 +- test_integration/ios/Podfile.lock | 4 ++-- test_integration/pubspec.lock | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8d35320da..57ab6752f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ In `pubspec.yaml` file: ```yaml dependencies: - ably_flutter: ^1.2.28 + ably_flutter: ^1.2.29 ``` ### Import the package diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index fd0504a4d..553320c27 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -2,7 +2,7 @@ PODS: - Ably (1.2.29): - AblyDeltaCodec (= 1.3.3) - msgpack (= 0.4.0) - - ably_flutter (1.2.28): + - ably_flutter (1.2.29): - Ably (= 1.2.29) - Flutter - AblyDeltaCodec (1.3.3) @@ -45,7 +45,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Ably: 2a5dc2bbb7a3fe65447f4791237264795c470b8e - ably_flutter: 3a8981fba0393387488f9c633956110dd7085de3 + ably_flutter: 673619b9109d14b770de602d84f70d6fbd0e91cc AblyDeltaCodec: add5d06a756b3581b12aab5b5500a320b8c55bea device_info_plus: e5c5da33f982a436e103237c0c85f9031142abed Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 diff --git a/example/pubspec.lock b/example/pubspec.lock index b5affdeb1..c947cb41e 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -7,7 +7,7 @@ packages: path: ".." relative: true source: path - version: "1.2.28" + version: "1.2.29" args: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index f097eb2e1..8dca257e4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: ably_flutter description: A wrapper around Ably's Cocoa and Java client library SDKs, providing iOS and Android support. -version: 1.2.28 +version: 1.2.29 repository: https://github.com/ably/ably-flutter environment: diff --git a/test_integration/ios/Podfile.lock b/test_integration/ios/Podfile.lock index 52f7f7e41..7158dfd55 100644 --- a/test_integration/ios/Podfile.lock +++ b/test_integration/ios/Podfile.lock @@ -2,7 +2,7 @@ PODS: - Ably (1.2.29): - AblyDeltaCodec (= 1.3.3) - msgpack (= 0.4.0) - - ably_flutter (1.2.28): + - ably_flutter (1.2.29): - Ably (= 1.2.29) - Flutter - AblyDeltaCodec (1.3.3) @@ -27,7 +27,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Ably: 2a5dc2bbb7a3fe65447f4791237264795c470b8e - ably_flutter: 3a8981fba0393387488f9c633956110dd7085de3 + ably_flutter: 673619b9109d14b770de602d84f70d6fbd0e91cc AblyDeltaCodec: add5d06a756b3581b12aab5b5500a320b8c55bea Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 msgpack: c85f6251873059738472ae136951cec5f30f3251 diff --git a/test_integration/pubspec.lock b/test_integration/pubspec.lock index d6ff17b94..022be776c 100644 --- a/test_integration/pubspec.lock +++ b/test_integration/pubspec.lock @@ -15,7 +15,7 @@ packages: path: ".." relative: true source: path - version: "1.2.28" + version: "1.2.29" analyzer: dependency: transitive description: From bfbfa4e62329a938154d21a50145b80b4f670e9c Mon Sep 17 00:00:00 2001 From: evgeny Date: Thu, 4 Apr 2024 15:10:54 +0100 Subject: [PATCH 4/4] docs: update `CHANGELOG` for 1.2.29 release --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c1471ad3..e87a4f56b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.2.29](https://github.com/ably/ably-flutter/tree/v1.2.29) + +[Full Changelog](https://github.com/ably/ably-flutter/compare/v1.2.28...v1.2.29) + +This release contains Ably Push Notification improvements + +- Updated `ably-cocoa` dependency to `1.2.29` +- Updated `ably-android` dependency to `1.2.36` + ## [1.2.28](https://github.com/ably/ably-flutter/tree/v1.2.28) [Full Changelog](https://github.com/ably/ably-flutter/compare/v1.2.27...v1.2.28)