From a9bf942993b9879a0b4fa5f5ca14b66054e0ba2b Mon Sep 17 00:00:00 2001 From: ikbalkaya Date: Fri, 28 Apr 2023 14:19:14 +0100 Subject: [PATCH 1/4] Bump version number --- README.md | 2 +- example/ios/Podfile.lock | 4 ++-- example/pubspec.lock | 2 +- pubspec.yaml | 2 +- test_integration/ios/Podfile.lock | 6 +++--- test_integration/pubspec.lock | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3b849703f..142d38ac8 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ In `pubspec.yaml` file: ```yaml dependencies: - ably_flutter: ^1.2.15 + ably_flutter: ^1.2.16 ``` ### Import the package diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 6be1b15e2..a1c50cc2a 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -2,7 +2,7 @@ PODS: - Ably (1.2.10): - AblyDeltaCodec (= 1.3.2) - msgpack (= 0.4.0) - - ably_flutter (1.2.15): + - ably_flutter (1.2.16): - Ably (= 1.2.10) - Flutter - AblyDeltaCodec (1.3.2) @@ -45,7 +45,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Ably: 80be962e2e87bac69727a26ba72b868c8e86288e - ably_flutter: bba4fea46a2a3269fae98b67bd5c0c75cf3f0132 + ably_flutter: eadd9c176bff0c6eb2112fc23da8a522c8c124df AblyDeltaCodec: 783d017270de70bbbc0a84e4235297b225d33636 device_info_plus: e5c5da33f982a436e103237c0c85f9031142abed Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 diff --git a/example/pubspec.lock b/example/pubspec.lock index 85c0fb13c..fb7149c8d 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -7,7 +7,7 @@ packages: path: ".." relative: true source: path - version: "1.2.15" + version: "1.2.16" args: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index f81686e4a..db903a5fd 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.15 +version: 1.2.16 repository: https://github.com/ably/ably-flutter environment: diff --git a/test_integration/ios/Podfile.lock b/test_integration/ios/Podfile.lock index 0f4cc7397..32b8515bc 100644 --- a/test_integration/ios/Podfile.lock +++ b/test_integration/ios/Podfile.lock @@ -2,7 +2,7 @@ PODS: - Ably (1.2.10): - AblyDeltaCodec (= 1.3.2) - msgpack (= 0.4.0) - - ably_flutter (1.2.15): + - ably_flutter (1.2.16): - Ably (= 1.2.10) - Flutter - AblyDeltaCodec (1.3.2) @@ -27,11 +27,11 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Ably: 80be962e2e87bac69727a26ba72b868c8e86288e - ably_flutter: bba4fea46a2a3269fae98b67bd5c0c75cf3f0132 + ably_flutter: eadd9c176bff0c6eb2112fc23da8a522c8c124df AblyDeltaCodec: 783d017270de70bbbc0a84e4235297b225d33636 Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 msgpack: c85f6251873059738472ae136951cec5f30f3251 PODFILE CHECKSUM: f2c6cc511583caab2c65ac3f5766428391d93d34 -COCOAPODS: 1.11.3 +COCOAPODS: 1.12.1 diff --git a/test_integration/pubspec.lock b/test_integration/pubspec.lock index d75c0d7eb..c8ffc1931 100644 --- a/test_integration/pubspec.lock +++ b/test_integration/pubspec.lock @@ -14,7 +14,7 @@ packages: path: ".." relative: true source: path - version: "1.2.15" + version: "1.2.16" analyzer: dependency: transitive description: From 46fbd2f7d6a318cf249776ef378975feb6e7f064 Mon Sep 17 00:00:00 2001 From: ikbalkaya Date: Fri, 28 Apr 2023 14:28:33 +0100 Subject: [PATCH 2/4] Update CHANGELOG.md --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b3d0e9be..95bf15486 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [1.2.16](https://github.com/ably/ably-flutter/tree/v1.2.16) + +[Full Changelog](https://github.com/ably/ably-flutter/compare/v1.2.15...v1.2.16) + +**Fixed bugs:** + +- authHeaders type conversion on Android Plugin is incorrect [\#444](https://github.com/ably/ably-flutter/issues/444) +- iOS \_CastError exception [\#355](https://github.com/ably/ably-flutter/issues/355) + +**Closed issues:** + +- How to handle when user auth changes? [\#459](https://github.com/ably/ably-flutter/issues/459) +- Expose `href` from `ErrorInfo` in bubbled exceptions [\#441](https://github.com/ably/ably-flutter/issues/441) +- java.util.HashMap cannot be cast to io.ably.lib.types.Param [\#439](https://github.com/ably/ably-flutter/issues/439) + ## [1.2.15](https://github.com/ably/ably-flutter/tree/v1.2.15) [Full Changelog](https://github.com/ably/ably-flutter/compare/v1.2.14...v1.2.15) From 9e7b3a8531075050a9ef08b4f0f9c6f3ecaf7850 Mon Sep 17 00:00:00 2001 From: ikbalkaya Date: Fri, 28 Apr 2023 14:48:25 +0100 Subject: [PATCH 3/4] Add improvement on new added auth methods --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95bf15486..d68be5282 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,9 @@ **Closed issues:** -- How to handle when user auth changes? [\#459](https://github.com/ably/ably-flutter/issues/459) +- How to handle when user auth changes? +Added new Auth methods: 'requestToken', 'authorize','createTokenRequest' [\#459](https://github +.com/ably/ably-flutter/issues/459) - Expose `href` from `ErrorInfo` in bubbled exceptions [\#441](https://github.com/ably/ably-flutter/issues/441) - java.util.HashMap cannot be cast to io.ably.lib.types.Param [\#439](https://github.com/ably/ably-flutter/issues/439) From 5a0c17c36d48a0fc1a44c392136dba2d64c6f6cd Mon Sep 17 00:00:00 2001 From: ikbalkaya Date: Fri, 28 Apr 2023 14:53:22 +0100 Subject: [PATCH 4/4] Add a new section for enhancements --- CHANGELOG.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d68be5282..d1db743ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ [Full Changelog](https://github.com/ably/ably-flutter/compare/v1.2.15...v1.2.16) +**Implemented enhancements:** + +- Added new Auth methods: 'requestToken', 'authorize','createTokenRequest' [\#460](https://github.com/ably/ably-flutter/pull/460) + **Fixed bugs:** - authHeaders type conversion on Android Plugin is incorrect [\#444](https://github.com/ably/ably-flutter/issues/444) @@ -11,8 +15,7 @@ **Closed issues:** -- How to handle when user auth changes? -Added new Auth methods: 'requestToken', 'authorize','createTokenRequest' [\#459](https://github +- How to handle when user auth changes? [\#459](https://github .com/ably/ably-flutter/issues/459) - Expose `href` from `ErrorInfo` in bubbled exceptions [\#441](https://github.com/ably/ably-flutter/issues/441) - java.util.HashMap cannot be cast to io.ably.lib.types.Param [\#439](https://github.com/ably/ably-flutter/issues/439)