Skip to content

Commit

Permalink
AUTOMATION: Version Bump and CHANGELOG Update
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 5, 2024
1 parent c9f82e9 commit f69da55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 78 deletions.
77 changes: 1 addition & 76 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,100 +1,25 @@
# UNRELEASED CHANGELOG
# April 05th, 2024 - 6.3.0
## Common changes for all artifacts
### 🐞 Fixed
- Shadowed messages are not increasing the unread count. [#5229](https://github.com/GetStream/stream-chat-android/pull/5229)

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-client
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added
- Added `ChatClient.getChannel` to fetch a channel with no side effects. [#5227](https://github.com/GetStream/stream-chat-android/pull/5227)
* Added `ChannelClient.get` to fetch a channel with no side effects.
- Added `UploadedFile.extraData` map field to include custom data to updated file attachments. [#5230](https://github.com/GetStream/stream-chat-android/pull/5230)

### ⚠️ Changed

### ❌ Removed
- Removed `UploadedImage` class, replace with `UploadedFile` class. [#5230](https://github.com/GetStream/stream-chat-android/pull/5230)

## stream-chat-android-offline
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-state
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-ui-common
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-ui-components
### 🐞 Fixed
- Fixed crash when providing a custom message view holder. [#5232](https://github.com/GetStream/stream-chat-android/pull/5232)

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed
- 🚨Breaking change: Exposed `MessageListItemViewHolderFactory.getItemViewType` which returns the view type for the given view holder. [#5232](https://github.com/GetStream/stream-chat-android/pull/5232)
* You have to implement this method in your custom `MessageListItemViewHolderFactory` implementation along with another `getItemViewType` method, which returns the view type for the given message item.

### ❌ Removed

## stream-chat-android-compose
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-markdown-transformer
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

# March 26th, 2024 - 6.2.3
## stream-chat-android-compose
### 🐞 Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ object Configuration {
const val sampleTargetSdk = 34
const val minSdk = 21
const val majorVersion = 6
const val minorVersion = 2
const val patchVersion = 3
const val minorVersion = 3
const val patchVersion = 0
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "io.getstream"
Expand Down

0 comments on commit f69da55

Please sign in to comment.