Skip to content

Commit 6ba88a7

Browse files
committed
1.4.2
1 parent 14bd3e7 commit 6ba88a7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
v1.4.2 (not released yet)
2-
=========================
1+
v1.4.2
2+
======
33

44
* Redis Sentinel support for Redis high availability setup. [Docs](https://fzambia.gitbooks.io/centrifugal/content/deploy/sentinel.html)
5-
* Redis Engine now uses Redis pipeline for batching publish operations - this results in latency and throughput improments when publish rate is high.
6-
* Refactored admin websocket. New option `admin` to enable admin websocket. New option `insecure_admin` to make this endpoint insecure (useful when admin websocket endpoint/port protected by firewall rules). `web_password` option renamed to `admin_password`, `web_secret` option renamed to `admin_secret`. **But old option names still supported to not break things in existing setups**. Also note, that when you run Centrifugo with `web` interface enabled - you also make admin websocket available, because web interface uses it. A little more info [in pull request](https://github.com/centrifugal/centrifugo/pull/83).
5+
* Redis Engine now uses Redis pipeline for batching publish operations - this results in latency and throughput improvments when publish rate is high.
6+
* Refactored admin websocket. New option `admin` to enable admin websocket. New option `insecure_admin` to make this endpoint insecure (useful when admin websocket endpoint/port protected by firewall rules). `web_password` option renamed to `admin_password`, `web_secret` option renamed to `admin_secret`, `insecure_web` renamed to `insecure_admin`. **But all old option names still supported to not break things in existing setups**. Also note, that when you run Centrifugo with `web` interface enabled - you also make admin websocket available, because web interface uses it. A little more info [in pull request](https://github.com/centrifugal/centrifugo/pull/83).
77
* Presence Redis Engine methods rewritten to lua to be atomic.
88
* Some Redis connection params now can be set over environment variables. See [#81](https://github.com/centrifugal/centrifugo/issues/81)
99
* Fix busy loop when attempting to reconnect to Redis. Fixes large CPU usage while reconnecting.
10-
* Shorter message `uid`s (22 bytes instead of 36). This was made to get some performance improvements.
10+
* Shorter message `uid`s (22 bytes instead of 36). This was made in order to get some performance improvements.
1111

1212

1313
v1.4.1

Dockerfile

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

3-
ENV VERSION 1.4.1
3+
ENV VERSION 1.4.2
44

5-
ENV CENTRIFUGO_SHA256 effe5444fd01a93644e2f6153412ce2a1d3b617d8d626c5627698279f1788637
5+
ENV CENTRIFUGO_SHA256 dded40f45c7f8ceab43d193cd9f72bc2eaa4fcf50637cf2545298c99f2b3f37f
66

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

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package main
22

33
const (
44
// VERSION of Centrifugo server.
5-
VERSION = "1.4.1"
5+
VERSION = "1.4.2"
66
)

0 commit comments

Comments
 (0)