From 9fcbd5b3479d64bbc1c0521f6584cf8c17329a02 Mon Sep 17 00:00:00 2001 From: Alexander Emelin Date: Sat, 4 Feb 2017 10:38:17 +0300 Subject: [PATCH] 1.6.4 --- CHANGELOG.md | 11 ++++++++--- Dockerfile | 4 ++-- centrifugo.rb | 4 ++-- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f013aae8f3..6ae864df57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,24 @@ -v1.6.4 (not released yet) -========================= +v1.6.4 +====== No backwards incompatible changes here. +We **consider removing** `timestamp` field from message as it's seems useless and never used by Centrifugo users. Applications that need timestamp for some reason can include it into message JSON payload. If you have any objections please look at [issue #147](https://github.com/centrifugal/centrifugo/issues/147) and write your thoughts against removing this field. + ### Features -* configurable websocket compression level - see [updated docs](https://fzambia.gitbooks.io/centrifugal/content/mixed/websocket_compression.html) +* configurable websocket compression level - see [updated docs](https://fzambia.gitbooks.io/centrifugal/content/mixed/websocket_compression.html). Bear in mind that compression is still very CPU and memory expensive +* new metric `node_uptime_seconds` - see [updated docs](https://fzambia.gitbooks.io/centrifugal/content/server/stats.html) for stats ### Fixes * fixes crash when using builtin TLS server - see [#145](https://github.com/centrifugal/centrifugo/issues/145) +* redirect Go std lib logging into our INFO logger ### Internal (for developers/contributors) * Using Go 1.7.5 for builds +* As soon as Go 1.8 out we will be able to remove `x/net/http2` dependency as standard lib will contain fix for [#145](https://github.com/centrifugal/centrifugo/issues/145) v1.6.3 diff --git a/Dockerfile b/Dockerfile index ca74df818e..480e70e1fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM centos:7 -ENV VERSION 1.6.3 +ENV VERSION 1.6.4 -ENV CENTRIFUGO_SHA256 2a5c26c5bc414e70669ca45fffacb89a239595822b476b66c2745d9fd827b8d7 +ENV CENTRIFUGO_SHA256 b25613dbfd2324793c6649e01eb395d3a5f4bf53c213620232ef9f6726254082 ENV DOWNLOAD https://github.com/centrifugal/centrifugo/releases/download/v$VERSION/centrifugo-$VERSION-linux-amd64.zip diff --git a/centrifugo.rb b/centrifugo.rb index 9fa7c2d9a1..9936de5d15 100644 --- a/centrifugo.rb +++ b/centrifugo.rb @@ -1,8 +1,8 @@ class Centrifugo < Formula desc "Centrifugo" homepage "https://github.com/centrifugal/centrifugo" - url "https://github.com/centrifugal/centrifugo/releases/download/v1.6.3/centrifugo-1.6.3-darwin-amd64.zip" - sha256 "98bf03e36a5b55ecc98e6314725b1bc77d1b224823827a9b7b4bbc57571422d5" + url "https://github.com/centrifugal/centrifugo/releases/download/v1.6.4/centrifugo-1.6.4-darwin-amd64.zip" + sha256 "c5a13e2d4e2fd7513909c3bd4fec545d4996dae7cf035efb4d71bea6df38cfcc" def install system "chmod", "+x", "centrifugo"