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 Dec 11, 2023
1 parent f651c69 commit 8ad4b16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 84 deletions.
84 changes: 1 addition & 83 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,64 +1,15 @@
# UNRELEASED CHANGELOG
## Common changes for all artifacts
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

# December 11th, 2023 - 6.0.10
## stream-chat-android-core
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed
- 🚨Breaking change: The following properties in `User` class are now **nullable**: `banned`, `invisible`. [#5107](https://github.com/GetStream/stream-chat-android/pull/5107)
* Please use `User.isBanned` as non-nullable version.
* Please use `User.isInvisible` as non-nullable version.
* Properties such as `invisible`, `banned`, `teams` and `role` are not being used to establish WS connection flow if not specified.

### ❌ Removed

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

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

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

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-state
### 🐞 Fixed
- Fix wrong Message.ownReactions. [#5106](https://github.com/GetStream/stream-chat-android/pull/5106)

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-ui-common
### 🐞 Fixed
- Fixed broken date formatting. [#5101](https://github.com/GetStream/stream-chat-android/pull/5101)
Expand All @@ -67,29 +18,13 @@
- Fixed `MessageList` scrolling behaviour while receiving a new message. [#5112](https://github.com/GetStream/stream-chat-android/pull/5112)
* `NewMessageState.MyOwn` and `NewMessageState.Other` are now data classes.

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-ui-components
### 🐞 Fixed
- Fixed `MessageClickListener` never being called. [#5096](https://github.com/GetStream/stream-chat-android/pull/5096)
- Fixed thread separator ui order. [#5098](https://github.com/GetStream/stream-chat-android/pull/5098)
* `MessageListViewModelFactory.showThreadSeparatorInEmptyThread` was added to control the visibility of the thread separator in empty threads.
- Fixed: Regex was not correctly escaped in getOccurrenceRanges [#5109](https://github.com/GetStream/stream-chat-android/pull/5109)

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-compose
### 🐞 Fixed
- Fixed thread separator ui order. [#5098](https://github.com/GetStream/stream-chat-android/pull/5098)
Expand All @@ -98,23 +33,6 @@
### ⬆️ Improved
- Removed attachment picker customization limitation for `AttachmentsPickerTabFactory` non-file implementations. [#5104](https://github.com/GetStream/stream-chat-android/pull/5104)

### ✅ Added

### ⚠️ Changed

### ❌ Removed

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

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

# November 24th, 2023 - 6.0.9
## stream-chat-android-client
### 🐞 Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object Configuration {
const val minSdk = 21
const val majorVersion = 6
const val minorVersion = 0
const val patchVersion = 9
const val patchVersion = 10
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 8ad4b16

Please sign in to comment.