diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b6c6af842..a3d92696b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +v5.0.2 +====== + +### Improvements + +* Quiet mode and no expiration for gentoken/gensubtoken cli commands [#681](https://github.com/centrifugal/centrifugo/pull/681) - so token generation using cli helpers is more flexible now +* Add `proxy_static_http_headers` option and `static_http_headers` key for granular proxy [#687](https://github.com/centrifugal/centrifugo/pull/687) - so it's possible to append custom headers to HTTP proxy requests. + +### Fixes + +* Suppress warnings about k8s env vars, see [issue](https://github.com/centrifugal/centrifugo/issues/678) + +### Misc + +* Release is built with Go 1.20.7 +* Dependencies updated (rueidis, quic-go, crypto, etc) +* Replace `interface{}` with `any` in code base, [#682](https://github.com/centrifugal/centrifugo/pull/682) + v5.0.1 ====== diff --git a/misc/release/notes.md b/misc/release/notes.md index 0eb29d7c59..edacc60a4b 100644 --- a/misc/release/notes.md +++ b/misc/release/notes.md @@ -8,6 +8,17 @@ For details, go to the [Centrifugo documentation site](https://centrifugal.dev). ## What's changed -## Fixes +### Improvements -* Fix panic upon subscription token validation caused by nil interface comparison, [commit](https://github.com/centrifugal/centrifugo/commit/fe2a92da24d1e8a473e559224fc5c87895713f6a) +* Quiet mode and no expiration for gentoken/gensubtoken cli commands [#681](https://github.com/centrifugal/centrifugo/pull/681) - so token generation using cli helpers is more flexible now +* Add `proxy_static_http_headers` option and `static_http_headers` key for granular proxy [#687](https://github.com/centrifugal/centrifugo/pull/687) - so it's possible to append custom headers to HTTP proxy requests. + +### Fixes + +* Suppress warnings about k8s env vars, see [issue](https://github.com/centrifugal/centrifugo/issues/678) + +### Misc + +* Release is built with Go 1.20.7 +* Dependencies updated (rueidis, quic-go, crypto, etc) +* Replace `interface{}` with `any` in code base, [#682](https://github.com/centrifugal/centrifugo/pull/682)