diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d92696b2..1205ad3ec4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +v5.0.3 +====== + +### Improvements + +* Add support for GRPC exporter protocol in opentelemetry tracing, by @SinimaWath in [#691](https://github.com/centrifugal/centrifugo/pull/691) + +### Misc + +* Release is built with Go 1.20.7 +* Dependencies updated (rueidis, quic-go, opentelemetry, etc) + v5.0.2 ====== diff --git a/misc/release/notes.md b/misc/release/notes.md index edacc60a4b..e8ddfe2d84 100644 --- a/misc/release/notes.md +++ b/misc/release/notes.md @@ -10,15 +10,9 @@ For details, go to the [Centrifugo documentation site](https://centrifugal.dev). ### 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) +* Add support for GRPC exporter protocol in opentelemetry tracing, by @SinimaWath in [#691](https://github.com/centrifugal/centrifugo/pull/691) ### 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) +* Dependencies updated (rueidis, quic-go, opentelemetry, etc) diff --git a/misc/user_status/get.sh b/misc/user_status/get.sh deleted file mode 100644 index f5ba3569b6..0000000000 --- a/misc/user_status/get.sh +++ /dev/null @@ -1,4 +0,0 @@ -curl http://localhost:8000/api --header "Content-Type: application/json" \ - --header "Authorization: apikey ${CENTRIFUGO_API_KEY}" \ - --request POST \ - --data '{"method": "rpc", "params": {"method": "getUserStatus", "params": {"users": ["'${CENTRIFUGO_USER}'"]}}}' diff --git a/misc/user_status/set.sh b/misc/user_status/set.sh deleted file mode 100644 index 121cafb149..0000000000 --- a/misc/user_status/set.sh +++ /dev/null @@ -1,4 +0,0 @@ -curl http://localhost:8000/api --header "Content-Type: application/json" \ - --header "Authorization: apikey ${CENTRIFUGO_API_KEY}" \ - --request POST \ - --data '{"method": "rpc", "params": {"method": "updateActiveStatus", "params": {"users": ["'${CENTRIFUGO_USER}'"]}}}'