Skip to content

Commit 1a351d9

Browse files
committed
v1.3.3
1 parent df1d84a commit 1a351d9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
v1.3.3
2+
======
3+
4+
No backwards incompatible changes here
5+
6+
* fix automatic presence expire in Redis engine - could lead to small memory leaks in Redis when using presence. Also could result in wrong presence information after non-graceful Centrifugo node shutdown.
7+
* configurable limit for amount of channels each client can subscribe to. Default `100`. Can be changed using `client_channel_limit` configuration option.
8+
9+
110
v1.3.2
211
======
312

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM centos:7
22

3-
ENV VERSION 1.3.2
3+
ENV VERSION 1.3.3
44

5-
ENV CENTRIFUGO_SHA256 24394c063b98b51125354787a7a8dad48cee582711a113ea301d8052d8622738
5+
ENV CENTRIFUGO_SHA256 16644bb15c0cf369abe6c0c76c1e511ac1da2473b6f3bfeea9912a0640cb4600
66

77
ENV DOWNLOAD https://github.com/centrifugal/centrifugo/releases/download/v$VERSION/centrifugo-$VERSION-linux-amd64.zip
88

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222

2323
const (
2424
// VERSION determines version of Centrifugo server.
25-
VERSION = "1.3.2"
25+
VERSION = "1.3.3"
2626
)
2727

2828
func setupLogging() {

0 commit comments

Comments
 (0)