Skip to content

Commit

Permalink
Release v5.0.0 (#177)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
  • Loading branch information
github-actions[bot] and github-actions authored Feb 3, 2022
1 parent 18c60c4 commit 0877f03
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 10 deletions.
38 changes: 34 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,39 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [5.0.0](https://github.com/GetStream/stream-chat-go/compare/v4.0.1...v5.0.0) (2022-02-03)


### ⚠ BREAKING CHANGES

- `PartialUpdateMessage` method has a new signature
- `Truncatechannel` method has a new signature
- `AddMembers` method has a new signature
- `MarkRead` method has a new signature
- `UpdateCommand` method has a new signature
- `PartialUpdateMessage` method has a new signature
- `MuteUser` method has a new signature
- `MuteUsers` method has a new signature
- `FlagUser` method has a new signature
- `ExportUser` method has a new signature
- `DeactivateUser` method has a new signature
- `ReactivateUser` method has a new signature
- `DeleteUser` method has a new signature
- `BanUser` methods have a new signature
- `UnbanUser` methods have a new signature
- `ShadowBan` methods have a new signature

### Features

* add grants to channeltype ([#166](https://github.com/GetStream/stream-chat-go/issues/166)) ([0a1a824](https://github.com/GetStream/stream-chat-go/commit/0a1a8242d61e4a96084d11bebb0f8e92b79b66ea))
* add import endpoint ([#172](https://github.com/GetStream/stream-chat-go/issues/172)) ([1dd3eba](https://github.com/GetStream/stream-chat-go/commit/1dd3eba5beb5a0b6559cda5a90b48bd9e4c0e2db))
* add offset and limit to listimports ([#174](https://github.com/GetStream/stream-chat-go/issues/174)) ([8c5702b](https://github.com/GetStream/stream-chat-go/commit/8c5702b170b7e5322f761a2b5b8f2feed95613ac))
* enhance connection pooling ([#171](https://github.com/GetStream/stream-chat-go/issues/171)) ([a78a42a](https://github.com/GetStream/stream-chat-go/commit/a78a42afed6e928b255364d64a713351d585b50f))
* extend app config with upload configs ([#170](https://github.com/GetStream/stream-chat-go/issues/170)) ([f4466ca](https://github.com/GetStream/stream-chat-go/commit/f4466ca4e506fec9e2e162757000b0a42e438a43))
* full feature parity ([#168](https://github.com/GetStream/stream-chat-go/issues/168)) ([6cac452](https://github.com/GetStream/stream-chat-go/commit/6cac452969917b7cbd2c8cfe34ca149b90046377))
* improved some apis ([#169](https://github.com/GetStream/stream-chat-go/issues/169)) ([ac44302](https://github.com/GetStream/stream-chat-go/commit/ac443025f2e27ddaa7a849e78b12d6e95da56991))
* swappable http client ([#173](https://github.com/GetStream/stream-chat-go/issues/173)) ([328e767](https://github.com/GetStream/stream-chat-go/commit/328e7677ac5c32496c7cedaf7ca51e8fcf2dbed3))

## [4.0.1] 2021-12-23

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# stream-chat-go

[![build](https://github.com/GetStream/stream-chat-go/workflows/build/badge.svg)](https://github.com/GetStream/stream-chat-go/actions)
[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v4?tab=doc)
[![godoc](https://pkg.go.dev/badge/GetStream/stream-chat-go)](https://pkg.go.dev/github.com/GetStream/stream-chat-go/v5?tab=doc)

the official Golang API client for [Stream chat](https://getstream.io/chat/) a service for building chat applications.

Expand All @@ -12,7 +12,7 @@ You can use this library to access chat API endpoints server-side, for the clien
### Installation

```bash
go get github.com/GetStream/stream-chat-go/v4
go get github.com/GetStream/stream-chat-go/v5
```

### Documentation
Expand Down Expand Up @@ -40,7 +40,7 @@ package main
import (
"os"

stream "github.com/GetStream/stream-chat-go/v4"
stream "github.com/GetStream/stream-chat-go/v5"
)

var APIKey = os.Getenv("STREAM_KEY")
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/GetStream/stream-chat-go/v4
module github.com/GetStream/stream-chat-go/v5

go 1.16

Expand Down
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
)

const (
versionMajor = 4
versionMajor = 5
versionMinor = 0
versionPatch = 1
versionPatch = 0
)

// Version returns the version of the library.
Expand Down

0 comments on commit 0877f03

Please sign in to comment.