From 139e3085a95f7290be12a03e4310d07123bc5fb4 Mon Sep 17 00:00:00 2001 From: Alexander Emelin Date: Mon, 22 Jan 2024 23:49:02 +0200 Subject: [PATCH] up centrifuge, prepare v5.2.2 --- go.mod | 2 +- go.sum | 4 ++-- misc/release/notes.md | 13 +------------ 3 files changed, 4 insertions(+), 15 deletions(-) diff --git a/go.mod b/go.mod index d9ed8444bb..ef528d3ba1 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/FZambia/statik v0.1.2-0.20180217151304-b9f012bb2a1b github.com/FZambia/tarantool v0.3.1 github.com/FZambia/viper-lite v0.0.0-20220110144934-1899f66c7d0e - github.com/centrifugal/centrifuge v0.30.7-0.20240114125429-6cd1903fe92b + github.com/centrifugal/centrifuge v0.30.7-0.20240122214406-117fa3e02289 github.com/centrifugal/protocol v0.11.0 github.com/cristalhq/jwt/v5 v5.4.0 github.com/gobwas/glob v0.2.3 diff --git a/go.sum b/go.sum index 160253c381..600681e2dd 100644 --- a/go.sum +++ b/go.sum @@ -14,8 +14,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM= github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= -github.com/centrifugal/centrifuge v0.30.7-0.20240114125429-6cd1903fe92b h1:9nnRZhR9OsvJHR6EBthU4PDMZJbdx83tnwrcKcf4n+k= -github.com/centrifugal/centrifuge v0.30.7-0.20240114125429-6cd1903fe92b/go.mod h1:qifHDtupD+pKnd7CuLt3SiLk5SX/bAtZdXPf5Pydn6Q= +github.com/centrifugal/centrifuge v0.30.7-0.20240122214406-117fa3e02289 h1:KvexbeOArmj0RajnJJ54GaiesZfqjiGIK5AKAkhLMI4= +github.com/centrifugal/centrifuge v0.30.7-0.20240122214406-117fa3e02289/go.mod h1:qifHDtupD+pKnd7CuLt3SiLk5SX/bAtZdXPf5Pydn6Q= github.com/centrifugal/protocol v0.11.0 h1:pQKfVT4c3/uiRNszaOenE4NqJqL4VBlzBku8skI739w= github.com/centrifugal/protocol v0.11.0/go.mod h1:33nZhrA2iRoR6jT+oVzu1ARx+iWIgxOgYuZMhWMWVM4= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= diff --git a/misc/release/notes.md b/misc/release/notes.md index a3c7fb3c73..6c44d01522 100644 --- a/misc/release/notes.md +++ b/misc/release/notes.md @@ -8,17 +8,6 @@ For details, go to the [Centrifugo documentation site](https://centrifugal.dev). ## What's changed -### Improvements - -* Support for OKP JWKs based on Ed25519, [#756](https://github.com/centrifugal/centrifugo/pull/756) -* New boolean option `global_redis_presence_user_mapping` to drastically improve presence stats performance for channels with large number of active subscribers when using Redis engine. See [#750](https://github.com/centrifugal/centrifugo/issues/750) for the motivation and implementation details. Also, see in [docs](https://centrifugal.dev/docs/server/engines#optimize-getting-presence-stats) -* Admin web UI now uses `/admin/api/settings` endpoint on start to load admin UI configuration options. Admin web UI status page now does not call `info` API periodically when browser window is not visible (using [visibility browser API](https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API)). Also, some minor CSS style improvements were made. - ### Fixes -* Fix nil pointer dereference upon channel regex check inside namespace, [#760](https://github.com/centrifugal/centrifugo/pull/760) - -### Misc - -* Release is built using Go v1.21.6 -* Use grouped dependabot version updates by @j178, [#762](https://github.com/centrifugal/centrifugo/pull/762) +* Fix nil pointer dereference upon calling presence stats – fixes the regression introduced by v5.2.1, [centrifugal/centrifuge#117fa3e](centrifugal/centrifuge/commit/117fa3e02289f193afa16d8b4e90e0cc4376d6a0)