Skip to content

Commit 0877f03

Browse files
github-actions[bot]github-actions
andauthored
Release v5.0.0 (#177)
Co-authored-by: github-actions <[email protected]>
1 parent 18c60c4 commit 0877f03

File tree

4 files changed

+40
-10
lines changed

4 files changed

+40
-10
lines changed

CHANGELOG.md

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,39 @@
11
# Changelog
22

3-
All notable changes to this project will be documented in this file.
4-
5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
3+
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.
4+
5+
## [5.0.0](https://github.com/GetStream/stream-chat-go/compare/v4.0.1...v5.0.0) (2022-02-03)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
- `PartialUpdateMessage` method has a new signature
11+
- `Truncatechannel` method has a new signature
12+
- `AddMembers` method has a new signature
13+
- `MarkRead` method has a new signature
14+
- `UpdateCommand` method has a new signature
15+
- `PartialUpdateMessage` method has a new signature
16+
- `MuteUser` method has a new signature
17+
- `MuteUsers` method has a new signature
18+
- `FlagUser` method has a new signature
19+
- `ExportUser` method has a new signature
20+
- `DeactivateUser` method has a new signature
21+
- `ReactivateUser` method has a new signature
22+
- `DeleteUser` method has a new signature
23+
- `BanUser` methods have a new signature
24+
- `UnbanUser` methods have a new signature
25+
- `ShadowBan` methods have a new signature
26+
27+
### Features
28+
29+
* add grants to channeltype ([#166](https://github.com/GetStream/stream-chat-go/issues/166)) ([0a1a824](https://github.com/GetStream/stream-chat-go/commit/0a1a8242d61e4a96084d11bebb0f8e92b79b66ea))
30+
* add import endpoint ([#172](https://github.com/GetStream/stream-chat-go/issues/172)) ([1dd3eba](https://github.com/GetStream/stream-chat-go/commit/1dd3eba5beb5a0b6559cda5a90b48bd9e4c0e2db))
31+
* 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))
32+
* enhance connection pooling ([#171](https://github.com/GetStream/stream-chat-go/issues/171)) ([a78a42a](https://github.com/GetStream/stream-chat-go/commit/a78a42afed6e928b255364d64a713351d585b50f))
33+
* 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))
34+
* full feature parity ([#168](https://github.com/GetStream/stream-chat-go/issues/168)) ([6cac452](https://github.com/GetStream/stream-chat-go/commit/6cac452969917b7cbd2c8cfe34ca149b90046377))
35+
* improved some apis ([#169](https://github.com/GetStream/stream-chat-go/issues/169)) ([ac44302](https://github.com/GetStream/stream-chat-go/commit/ac443025f2e27ddaa7a849e78b12d6e95da56991))
36+
* swappable http client ([#173](https://github.com/GetStream/stream-chat-go/issues/173)) ([328e767](https://github.com/GetStream/stream-chat-go/commit/328e7677ac5c32496c7cedaf7ca51e8fcf2dbed3))
737

838
## [4.0.1] 2021-12-23
939

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# stream-chat-go
22

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

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

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

1414
```bash
15-
go get github.com/GetStream/stream-chat-go/v4
15+
go get github.com/GetStream/stream-chat-go/v5
1616
```
1717

1818
### Documentation
@@ -40,7 +40,7 @@ package main
4040
import (
4141
"os"
4242

43-
stream "github.com/GetStream/stream-chat-go/v4"
43+
stream "github.com/GetStream/stream-chat-go/v5"
4444
)
4545

4646
var APIKey = os.Getenv("STREAM_KEY")

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/GetStream/stream-chat-go/v4
1+
module github.com/GetStream/stream-chat-go/v5
22

33
go 1.16
44

version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
)
66

77
const (
8-
versionMajor = 4
8+
versionMajor = 5
99
versionMinor = 0
10-
versionPatch = 1
10+
versionPatch = 0
1111
)
1212

1313
// Version returns the version of the library.

0 commit comments

Comments
 (0)