From 0acbf198c631fa235753651f2275b7d5133eb4a4 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Thu, 2 Oct 2025 19:41:26 +0100 Subject: [PATCH] Release 5.14.1 --- CHANGES.md | 5 +++++ pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 9e61883..fe5406b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # python-socketio change log +**Release 5.14.1** - 2025-10-02 + +- Restore support for `rediss://` URLs, and add support for `valkeys://` as well ([commit](https://github.com/miguelgrinberg/python-socketio/commit/6e2d0de12bb4e4a99fdfc30bed0706ded620822c)) +- Add support for Redis connections using unix sockets [#1503](https://github.com/miguelgrinberg/python-socketio/issues/1503) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/a8deb3a8f3ee51d75c124157efa7fc9289fd592b)) (thanks **Darren Chang**!) + **Release 5.14.0** - 2025-09-30 - Replace pickle with json in message queue communications [#1502](https://github.com/miguelgrinberg/python-socketio/issues/1502) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/53f6be094257ed81476b0e212c8cddd6d06ca39a)) diff --git a/pyproject.toml b/pyproject.toml index a322f16..a7e6aff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-socketio" -version = "5.14.1.dev0" +version = "5.14.1" license = {text = "MIT"} authors = [ { name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" },