From 578fc58d857f0a3e2ff582e7ab9faca43252ab5a Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jul 2024 16:00:34 +0000 Subject: [PATCH] AUTOMATION: Version Bump and CHANGELOG Update --- CHANGELOG.md | 56 +------------------ .../getstream/chat/android/Configuration.kt | 2 +- 2 files changed, 2 insertions(+), 56 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21208ee1a6c..512957608b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,5 @@ -# UNRELEASED CHANGELOG -## Common changes for all artifacts -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - +# July 05th, 2024 - 6.4.1 ## stream-chat-android-client -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Added `ChatClient.getNewerReplies` to fetch newer replies for a message in a thread. [#5256](https://github.com/GetStream/stream-chat-android/pull/5256) - Added `ChatClient.getThreads` to fetch threads for the current users. [#5264](https://github.com/GetStream/stream-chat-android/pull/5264) @@ -22,49 +7,27 @@ - Added new `ChatEvents` related with Polls. [#5273](https://github.com/GetStream/stream-chat-android/pull/5273) - Added pinned messages parsing. [#5306](https://github.com/GetStream/stream-chat-android/pull/5306) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-offline ### 🐞 Fixed - Fixed messages from hidden channels being shown up. [#5281](https://github.com/GetStream/stream-chat-android/pull/5281) -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-state ### 🐞 Fixed - Fixed member.role being missing when updating other members' roles in a channel. [#5290](https://github.com/GetStream/stream-chat-android/pull/5290) -### ⬆️ Improved - ### ✅ Added - Added `ChannelState.pinnedMessage` to obtain the pinned message in a channel. [#5306](https://github.com/GetStream/stream-chat-android/pull/5306) ### ⚠️ Changed - Delete a pinned message from the pinned list if it was deleted. [#5315](https://github.com/GetStream/stream-chat-android/pull/5315) -### ❌ Removed - ## stream-chat-android-ui-common ### 🐞 Fixed - Fixed the message list to scroll to the bottom when a message reaction is added. [#5280](https://github.com/GetStream/stream-chat-android/pull/5280) -### ⬆️ Improved - ### ✅ Added - Added pinned messages support to `MessageListController`. [#5306](https://github.com/GetStream/stream-chat-android/pull/5306) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-ui-components ### 🐞 Fixed - Fixed crash on `AttachmentGalleryActivity`. [#5284](https://github.com/GetStream/stream-chat-android/pull/5284) @@ -78,10 +41,6 @@ ### ✅ Added - Added additional message option for user blocking. [#5289](https://github.com/GetStream/stream-chat-android/pull/5289) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-compose ### 🐞 Fixed - Fixed deleted pinned messages being highlighted as pinned. [#5315](https://github.com/GetStream/stream-chat-android/pull/5315) @@ -102,19 +61,6 @@ - Now, Compose components use `StreamImage`, which delegates [Landscapist-Coil](https://github.com/skydoves/landscapist) for loading internal images. [#5299](https://github.com/GetStream/stream-chat-android/pull/5299) - Migrated to Kotlin 2.0 and Compose compiler plugin [#5303](https://github.com/GetStream/stream-chat-android/pull/5303) -### ❌ Removed - -## stream-chat-android-markdown-transformer -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - # May 24th, 2024 - 6.4.0 ## stream-chat-android-client ### 🐞 Fixed 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 686e56084fa..286bf0a5e33 100644 --- a/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt @@ -7,7 +7,7 @@ object Configuration { const val minSdk = 21 const val majorVersion = 6 const val minorVersion = 4 - const val patchVersion = 0 + const val patchVersion = 1 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"