From 0714fa5f5a4fdbad27af1fa8b5dbcde000e39afc Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:53:25 +0000 Subject: [PATCH] AUTOMATION: Version Bump and CHANGELOG Update --- CHANGELOG.md | 71 +------------------ .../getstream/chat/android/Configuration.kt | 4 +- 2 files changed, 3 insertions(+), 72 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96449a14dbc..46f1fe30066 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,5 @@ -# UNRELEASED CHANGELOG +# November 21th, 2024 - 6.6.0 ## Common changes for all artifacts -### 🐞 Fixed - ### ⬆️ Improved - Update dependency versions: - Android JUnit5 Gradle Plugin 1.11.2.0 @@ -51,51 +49,11 @@ - Turbine 1.2.0 - Work 2.9.1 -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-client -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-offline -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Add support for Threads. [#5481](https://github.com/GetStream/stream-chat-android/pull/5481) -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-state -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-ui-common -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Add `MessageListController.flagUser()` and `MessageListController.unflagUser()` methods for flagging/un-flagging users. [#5478](https://github.com/GetStream/stream-chat-android/pull/5478) - Add `MessageListController.ErrorEvent`s - `FlagUserError` and `UnflagUserError` representing errors which occurred during the execution of the corresponding operations. [#5478](https://github.com/GetStream/stream-chat-android/pull/5478) @@ -103,26 +61,12 @@ ### ⚠️ Changed - 🚨 Breaking change: The `MessagePositionHandler.handleMessagePosition` function now includes a new parameter, `isBeforeDateSeparator`, to handle message positioning more precisely within a group of messages. [#5466](https://github.com/GetStream/stream-chat-android/pull/5466) -### ❌ Removed - ## stream-chat-android-ui-components -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Add `MessageListViewModel.flagUser()` and `MessageListViewModel.unflagUser()` methods for flagging/un-flagging users. [#5478](https://github.com/GetStream/stream-chat-android/pull/5478) - Add edge-to-edge support for apps targeting Android 15. [#5469](https://github.com/GetStream/stream-chat-android/pull/5469) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-compose -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Add `MessageListViewModel.flagUser()` and `MessageListViewModel.unflagUser()` methods for flagging/un-flagging users. [#5478](https://github.com/GetStream/stream-chat-android/pull/5478) - Add edge-to-edge support for apps targeting Android 15. [#5469](https://github.com/GetStream/stream-chat-android/pull/5469) @@ -132,19 +76,6 @@ - 🚨 Breaking change: Replace usage of `RippleTheme` with `StreamRippleConfiguration` for customizing ripples via `ChatTheme`. [#5475](https://github.com/GetStream/stream-chat-android/pull/5475) - Expanded `MessageTheme` to allow customizing the message components. [#5466](https://github.com/GetStream/stream-chat-android/pull/5466) -### ❌ Removed - -## stream-chat-android-markdown-transformer -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - # November 06th, 2024 - 6.5.3 ## stream-chat-android-client ### ✅ Added diff --git a/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt b/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt index e1ce250be7e..25dc7b52654 100644 --- a/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt @@ -6,8 +6,8 @@ object Configuration { const val sampleTargetSdk = 34 const val minSdk = 21 const val majorVersion = 6 - const val minorVersion = 5 - const val patchVersion = 3 + const val minorVersion = 6 + const val patchVersion = 0 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"