Skip to content

Commit b423bf9

Browse files
committed
v1.3.2
1 parent 1aa2820 commit b423bf9

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
v1.3.2
2+
======
3+
4+
This release built using go 1.5.3 and [includes security fix in Go lang](https://groups.google.com/forum/#!topic/golang-announce/MEATuOi_ei4)
5+
6+
* empty errors not included in client response (**this requires using last Javascript client version**)
7+
* optimization in Redis engine when using history - one round trip to Redis to publish message and save it into history instead of two. This was done over registering lua script on server start.
8+
* client errors improvements - include error advice when error occurred (fix or retry at moment)
9+
10+
Also note that Javascript client will be fully refreshed soon. See [this pull request](https://github.com/centrifugal/centrifuge-js/pull/7)
11+
112
v1.3.1
213
======
314

config.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"presence": true,
1212
"join_leave": true,
1313
"history_size": 10,
14-
"history_lifetime": 30
14+
"history_lifetime": 30,
15+
"recover": true
1516
}
1617
]
1718
}

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.1"
25+
VERSION = "1.3.2"
2626
)
2727

2828
func setupLogging() {

0 commit comments

Comments
 (0)