From 9d473ec2a06e8ec18565c22044e5682078f48fe3 Mon Sep 17 00:00:00 2001 From: Alexander Emelin Date: Wed, 6 Oct 2021 12:11:04 +0300 Subject: [PATCH] prepare v3.0.2 --- CHANGELOG.md | 10 ++++++++++ misc/release/notes.md | 7 ++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbce4659d2..bf8d3ffbfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +v3.0.2 +====== + +No backwards incompatible changes here. + +Fixes: + +* Fix SockJS data escaping on EventSource fallback. See [igm/sockjs-go#100](https://github.com/igm/sockjs-go/issues/100) for more information. In short – this bug could prevent a message with `%` symbol inside be properly parsed by a SockJS Javascript client – thus not processed by a frontend at all. +* Fix panic on concurrent subscribe to the same channels with recovery feature on. More details in [centrifugal/centrifuge#207](https://github.com/centrifugal/centrifuge/pull/207) + v3.0.1 ====== diff --git a/misc/release/notes.md b/misc/release/notes.md index 6f45f47e0a..0a5b0cdf17 100644 --- a/misc/release/notes.md +++ b/misc/release/notes.md @@ -2,8 +2,5 @@ No backwards incompatible changes here. Fixes: -* Fix proxy behavior for disconnected clients, should be now consistent between HTTP and GRPC proxy types. -* Fix `bufio: buffer full` error when unmarshalling large client protocol JSON messages. -* Fix `unexpected end of JSON input` errors in Javascript client with Centrifugo v3.0.0 when publishing formatted JSON (with new lines). - -This release uses Go 1.17.1. We also added more tests for proxy package, thanks to [@silischev](https://github.com/silischev). +* Fix SockJS data escaping on EventSource fallback. See [igm/sockjs-go#100](https://github.com/igm/sockjs-go/issues/100) for more information. In short – this bug could prevent a message with `%` symbol inside be properly parsed by a SockJS Javascript client – thus not processed by a frontend at all. +* Fix panic on concurrent subscribe to the same channels with recovery feature on. More details in [centrifugal/centrifuge#207](https://github.com/centrifugal/centrifuge/pull/207)