commit python-python-socketio for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-python-socketio for openSUSE:Factory checked in at 2022-10-31 13:04:30 Comparing /work/SRC/openSUSE:Factory/python-python-socketio (Old) and /work/SRC/openSUSE:Factory/.python-python-socketio.new.2275 (New) Package is "python-python-socketio" Mon Oct 31 13:04:30 2022 rev:7 rq:1032441 version:5.7.2 Changes: --- /work/SRC/openSUSE:Factory/python-python-socketio/python-python-socketio.changes 2022-10-08 01:25:43.966299531 +0200 +++ /work/SRC/openSUSE:Factory/.python-python-socketio.new.2275/python-python-socketio.changes 2022-10-31 13:04:32.589758515 +0100 @@ -1,0 +2,9 @@ +Fri Oct 28 20:49:21 UTC 2022 - Yogalakshmi Arunachalam + +- Update to 5.7.2 + * Fixed disconnect implementation when using a message queue #1002 (commit) + * Fixed remote async disconnects via message queue #1003 (commit) + * Support optional payloads in msgpack implementation #981 (commit) (thanks Cromfel!) + * Recommend ASGI integration for Sanic in Documentation (commit) + +--- Old: python-socketio-5.7.1.tar.gz New: python-socketio-5.7.2.tar.gz Other differences: -- ++ python-python-socketio.spec ++ --- /var/tmp/diff_new_pack.zlWGGv/_old 2022-10-31 13:04:33.113761185 +0100 +++ /var/tmp/diff_new_pack.zlWGGv/_new 2022-10-31 13:04:33.117761205 +0100 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-python-socketio -Version:5.7.1 +Version:5.7.2 Release:0 Summary:SocketIO server License:MIT ++ python-socketio-5.7.1.tar.gz -> python-socketio-5.7.2.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-socketio-5.7.1/CHANGES.md new/python-socketio-5.7.2/CHANGES.md --- old/python-socketio-5.7.1/CHANGES.md2022-07-15 21:05:00.0 +0200 +++ new/python-socketio-5.7.2/CHANGES.md2022-10-17 11:12:27.0 +0200 @@ -1,5 +1,12 @@ # python-socketio change log +**Release 5.7.2** - 2022-10-17 + +- Fixed disconnect implementation when using a message queue [#1002](https://github.com/miguelgrinberg/python-socketio/issues/1002) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/f56ef6f0401b273107fc483c4ae1b5512209ac48)) +- Fixed remote async disconnects via message queue [#1003](https://github.com/miguelgrinberg/python-socketio/issues/1003) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/104d6569a0480ed0adb04e7d41f156762f9ebe9b)) +- Support optional payloads in msgpack implementation [#981](https://github.com/miguelgrinberg/python-socketio/issues/981) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/ce1afd79e69e35b81a6f0d02fbd7ae04af59f9d6)) (thanks **Cromfel**!) +- Recommend ASGI integration for Sanic in Documentation ([commit](https://github.com/miguelgrinberg/python-socketio/commit/2c3e360ae8b151bc0bfedbde50248cd0dc8d1ff9)) + **Release 5.7.1** - 2022-07-15 - Add `namespaces` argument to `Server` and `AsyncServer` [#822](https://github.com/miguelgrinberg/python-socketio/issues/822) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/efe87d867a205493654107d381bdb8b619b8ab2d)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-socketio-5.7.1/docs/server.rst new/python-socketio-5.7.2/docs/server.rst --- old/python-socketio-5.7.1/docs/server.rst 2022-07-15 21:05:00.0 +0200 +++ new/python-socketio-5.7.2/docs/server.rst 2022-10-17 11:12:27.0 +0200 @@ -628,6 +628,25 @@ The following sections describe a variety of deployment strategies for Socket.IO servers. +Uvicorn, Daphne, and other ASGI servers +~~~ + +The ``socketio.ASGIApp`` class is an ASGI compatible application that can +forward Socket.IO traffic to an ``socketio.AsyncServer`` instance:: + + sio = socketio.AsyncServer(async_mode='asgi') + app = socketio.ASGIApp(sio) + +If desired, the ``socketio.ASGIApp`` class can forward any traffic that is not +Socket.IO to another ASGI application, making it possible to deploy a standard +ASGI web application and the Socket.IO server as a bundle:: + + sio = socketio.AsyncServer(async_mode='asgi') + app = socketio.ASGIApp(sio, other_app) + +The ``ASGIApp`` instance is a fully complaint ASGI instance that can be +deployed with an ASGI compatible web server. + Aiohttp ~~~ @@ -691,6 +710,10 @@ Sanic ~ +Note: Due to some backward incompatible changes introduced in recent versions +of Sanic, i
commit python-python-socketio for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-python-socketio for openSUSE:Factory checked in at 2022-10-08 01:25:24 Comparing /work/SRC/openSUSE:Factory/python-python-socketio (Old) and /work/SRC/openSUSE:Factory/.python-python-socketio.new.2275 (New) Package is "python-python-socketio" Sat Oct 8 01:25:24 2022 rev:6 rq:1008706 version:5.7.1 Changes: --- /work/SRC/openSUSE:Factory/python-python-socketio/python-python-socketio.changes 2022-01-24 23:10:49.614416413 +0100 +++ /work/SRC/openSUSE:Factory/.python-python-socketio.new.2275/python-python-socketio.changes 2022-10-08 01:25:43.966299531 +0200 @@ -1,0 +2,31 @@ +Thu Oct 6 22:50:37 UTC 2022 - Yogalakshmi Arunachalam + +- Update to Release 5.7.1 - 2022-07-15 + Add namespaces argument to Server and AsyncServer #822 (commit) + Add missing await in asyncio server #952 (commit) (thanks sjrodahl!) + +- Update to Release 5.7.0 - 2022-07-04 + Server refuses connections on unknown namespaces #822 (commit) + Do not send ACK packet for unknown events #824 (commit) + Fix Python 3.11 deprecation warning #941 (commit) (thanks J??r??me Boulmier!) + Correct handling of RedisError exception #919 (commit) + Update Django example (commit) + Documentation fix for async client (commit) + Update documentation of asyncio server (commit) + Fix documentation typo #948 (commit) (thanks mostlycryptic!) + +- Update to Release 5.6.0 - 2022-04-24 + Catch and log errors in pubsub listening thread #889 (commit) + Use new asyncio support in redis package #911 (commit) + Add support for aiopiko version 7 and higher #897 (commit) (thanks Dmitriy!) + Fixed documentation typo #910 (commit) (thanks Omar Costa Hamido!) + Fix aiohttp example's background task #881 (commit) + Bump sanic from 0.8 to 20.12.6 in /examples/server/sanic #875 (commit) (thanks dependabot[bot]!) + Add application name to Sanic example #892 (commit) (thanks Florian Metzger-Noel!) + +- Update to Release 5.5.2 - 2022-02-15 + Connect with an empty auth object instead of None #861 (commit) + Fix indentation in the "Rooms" docs example. #872 (commit) (thanks Ezio Melotti!) + Remove 3.6 and pypy-3.6 builds, add 3.10 and pypy-3.8 (commit) + +--- Old: python-socketio-5.5.1.tar.gz New: python-socketio-5.7.1.tar.gz Other differences: -- ++ python-python-socketio.spec ++ --- /var/tmp/diff_new_pack.pe5dPE/_old 2022-10-08 01:25:44.394300512 +0200 +++ /var/tmp/diff_new_pack.pe5dPE/_new 2022-10-08 01:25:44.402300530 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-python-socketio -Version:5.5.1 +Version:5.7.1 Release:0 Summary:SocketIO server License:MIT ++ python-socketio-5.5.1.tar.gz -> python-socketio-5.7.1.tar.gz ++ 1754 lines of diff (skipped)
commit python-python-socketio for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-python-socketio for openSUSE:Factory checked in at 2022-01-24 23:10:12 Comparing /work/SRC/openSUSE:Factory/python-python-socketio (Old) and /work/SRC/openSUSE:Factory/.python-python-socketio.new.1938 (New) Package is "python-python-socketio" Mon Jan 24 23:10:12 2022 rev:5 rq:948409 version:5.5.1 Changes: --- /work/SRC/openSUSE:Factory/python-python-socketio/python-python-socketio.changes 2021-10-26 20:14:22.950031635 +0200 +++ /work/SRC/openSUSE:Factory/.python-python-socketio.new.1938/python-python-socketio.changes 2022-01-24 23:10:49.614416413 +0100 @@ -1,0 +2,19 @@ +Sun Jan 23 08:34:21 UTC 2022 - Axel Braun + +- version 5.5.1 + * Support multiple Kafka servers (thanks sparkingdark!) + * Include example code in flake8 pass + * Option to disable the SIGINT handler in the client #792 + * Do not invoke reserved events on a catch-all handler #814 + * Use correct binary packet types in the msgpack packet encoder #811 + * Add missing call() method to namespace classes #800 + * Add missing to argument to namespace emit() and send() methods #810 + * Configure Redis pubsub to skip subscription messages + * Migrate async Redis client manager to aioredis 2 #771 (thanks Sam Mosleh!) + * Update Python supported versions in docs + * Document how to get the connection state in the client #799 + * Improved documentation of start_background_task() function + * Improved documentation of call() method #813 + * Fixed intermittent test failures #572 + +--- @@ -5,2 +24,2 @@ - * Catch-all event handlers (commit) - * Implement disconnect method for external processes #684 (commit) + * Catch-all event handlers + * Implement disconnect method for external processes #684 Old: python-socketio-5.4.1.tar.gz New: python-socketio-5.5.1.tar.gz Other differences: -- ++ python-python-socketio.spec ++ --- /var/tmp/diff_new_pack.s3Snih/_old 2022-01-24 23:10:50.090413160 +0100 +++ /var/tmp/diff_new_pack.s3Snih/_new 2022-01-24 23:10:50.094413133 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-python-socketio # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-python-socketio -Version:5.4.1 +Version:5.5.1 Release:0 Summary:SocketIO server License:MIT ++ python-socketio-5.4.1.tar.gz -> python-socketio-5.5.1.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-socketio-5.4.1/CHANGES.md new/python-socketio-5.5.1/CHANGES.md --- old/python-socketio-5.4.1/CHANGES.md2021-10-14 21:19:50.0 +0200 +++ new/python-socketio-5.5.1/CHANGES.md2022-01-11 13:17:25.0 +0100 @@ -1,5 +1,25 @@ # python-socketio change log +**Release 5.5.1** - 2022-01-11 + +- Support multiple Kafka servers ([commit](https://github.com/miguelgrinberg/python-socketio/commit/4ee3649514b98c50cc0bf70d3f269389da52772d)) (thanks **sparkingdark**!) +- Include example code in flake8 pass ([commit](https://github.com/miguelgrinberg/python-socketio/commit/273a4b0439c84560d403662d8eba4122c28ba0d8)) + +**Release 5.5.0** - 2021-11-14 + +- Option to disable the SIGINT handler in the client [#792](https://github.com/miguelgrinberg/python-socketio/issues/792) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/ea84b9b1c714b02eaf1081f4e37fd130a3159d8c)) +- Do not invoke reserved events on a catch-all handler [#814](https://github.com/miguelgrinberg/python-socketio/issues/814) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/34f34e53d650dde605f5f4a98d7a70936524a1b8)) +- Use correct binary packet types in the msgpack packet encoder [#811](https://github.com/miguelgrinberg/python-socketio/issues/811) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/60735dd4c2fc87ed863d7dbf7de361500d963dd3)) +- Add missing `call()` method to namespace classes [#800](https://github.com/miguelgrinberg/python-socketio/issues/800) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/32db48d12ceb44d7a02fd9f05047b47c7ed3f4a5)) +- Add missing `to` argument to namespace `emit()` and `send()` methods [#810](https://github.com/miguelgrinberg/python-socketio/issues/810) ([commit](https://github.com/miguelgrinberg/python-socketio/comm
commit python-python-socketio for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-python-socketio for openSUSE:Factory checked in at 2021-10-26 20:13:43 Comparing /work/SRC/openSUSE:Factory/python-python-socketio (Old) and /work/SRC/openSUSE:Factory/.python-python-socketio.new.1890 (New) Package is "python-python-socketio" Tue Oct 26 20:13:43 2021 rev:4 rq:927348 version:5.4.1 Changes: --- /work/SRC/openSUSE:Factory/python-python-socketio/python-python-socketio.changes 2021-10-06 19:50:05.652060926 +0200 +++ /work/SRC/openSUSE:Factory/.python-python-socketio.new.1890/python-python-socketio.changes 2021-10-26 20:14:22.950031635 +0200 @@ -1,0 +2,7 @@ +Sat Oct 23 16:21:35 UTC 2021 - Axel Braun + +- version 5.4.1 + * Catch-all event handlers (commit) + * Implement disconnect method for external processes #684 (commit) + +--- Old: python-socketio-5.4.0.tar.gz New: python-socketio-5.4.1.tar.gz Other differences: -- ++ python-python-socketio.spec ++ --- /var/tmp/diff_new_pack.6ttSnF/_old 2021-10-26 20:14:23.378031862 +0200 +++ /var/tmp/diff_new_pack.6ttSnF/_new 2021-10-26 20:14:23.378031862 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-python-socketio -Version:5.4.0 +Version:5.4.1 Release:0 Summary:SocketIO server License:MIT ++ python-socketio-5.4.0.tar.gz -> python-socketio-5.4.1.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-socketio-5.4.0/.github/ISSUE_TEMPLATE/config.yml new/python-socketio-5.4.1/.github/ISSUE_TEMPLATE/config.yml --- old/python-socketio-5.4.0/.github/ISSUE_TEMPLATE/config.yml 2021-08-02 01:15:24.0 +0200 +++ new/python-socketio-5.4.1/.github/ISSUE_TEMPLATE/config.yml 2021-10-14 21:19:50.0 +0200 @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - name: GitHub Discussions -url: https://github.com/miguelgrinberg/Flask-SocketIO/discussions +url: https://github.com/miguelgrinberg/python-socketio/discussions about: Ask questions here. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-socketio-5.4.0/CHANGES.md new/python-socketio-5.4.1/CHANGES.md --- old/python-socketio-5.4.0/CHANGES.md2021-08-02 01:15:24.0 +0200 +++ new/python-socketio-5.4.1/CHANGES.md2021-10-14 21:19:50.0 +0200 @@ -1,5 +1,10 @@ # python-socketio change log +**Release 5.4.1** - 2021-10-14 + +- Catch-all event handlers ([commit](https://github.com/miguelgrinberg/python-socketio/commit/28569d48ad74d5414a0d2a8f69d7540dbdddf066)) +- Implement disconnect method for external processes [#684](https://github.com/miguelgrinberg/python-socketio/issues/684) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/a830c9f7887df715227f4284f30e8d62680e58ce)) + **Release 5.4.0** - 2021-08-02 - Support msgpack and custom packet serializers [#749](https://github.com/miguelgrinberg/python-socketio/issues/749) ([commit](https://github.com/miguelgrinberg/python-socketio/commit/5159e84c49daaf2da0579bfc6ee954a9c738a076)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-socketio-5.4.0/docs/client.rst new/python-socketio-5.4.1/docs/client.rst --- old/python-socketio-5.4.0/docs/client.rst 2021-08-02 01:15:24.0 +0200 +++ new/python-socketio-5.4.1/docs/client.rst 2021-10-14 21:19:50.0 +0200 @@ -65,6 +65,28 @@ async def message(data): print('I received a message!') +Catch-All Event Handlers + + +A "catch-all" event handler is invoked for any events that do not have an +event handler. You can define a catch-all handler using ``'*'`` as event name:: + + @sio.on('*') + def catch_all(event, sid, data): + pass + +Asyncio clients can also use a coroutine:: + + @sio.on('*') + async def catch_all(event, sid, data): + pass + +A catch-all event handler receives the event name as a first argument. The +remaining arguments are the same as for a regular event handler. + +Connect, Connect Error and Disconnect Event Handlers + + The ``connect``, ``connect_error`` and ``disconnect`` events are special; they are invoked automatically when a client connects or disconnects from the server:: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-socketio-5.4.0/docs/server.rst new/python-socketio-5.4.1/docs/server.rst ---
commit python-python-socketio for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-python-socketio for openSUSE:Factory checked in at 2021-10-06 19:49:56 Comparing /work/SRC/openSUSE:Factory/python-python-socketio (Old) and /work/SRC/openSUSE:Factory/.python-python-socketio.new.2443 (New) Package is "python-python-socketio" Wed Oct 6 19:49:56 2021 rev:3 rq:923480 version:5.4.0 Changes: --- /work/SRC/openSUSE:Factory/python-python-socketio/python-python-socketio.changes 2021-06-01 10:38:10.984886731 +0200 +++ /work/SRC/openSUSE:Factory/.python-python-socketio.new.2443/python-python-socketio.changes 2021-10-06 19:50:05.652060926 +0200 @@ -1,0 +2,6 @@ +Wed Oct 6 10:45:54 UTC 2021 - Axel Braun + +- update to version 5.4.0 + * Big changelog, see CHANGES.md + +--- Old: python-socketio-5.3.0.tar.gz New: python-socketio-5.4.0.tar.gz Other differences: -- ++ python-python-socketio.spec ++ --- /var/tmp/diff_new_pack.FtrRQJ/_old 2021-10-06 19:50:06.164061120 +0200 +++ /var/tmp/diff_new_pack.FtrRQJ/_new 2021-10-06 19:50:06.168061121 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-python-socketio -Version:5.3.0 +Version:5.4.0 Release:0 Summary:SocketIO server License:MIT @@ -30,6 +30,8 @@ BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros +#Tests: +BuildRequires: %{python_module msgpack} Requires: python-bidict >= 0.21.0 Requires: python-python-engineio >= 4.1.0 Suggests: python-aiohttp >= 3.4 @@ -57,7 +59,7 @@ %pytest -rs -k 'not test_logger' %files %{python_files} -%doc README.rst +%doc README.md %license LICENSE %{python_sitelib}/socketio %{python_sitelib}/python_socketio-%{version}*-info ++ python-socketio-5.3.0.tar.gz -> python-socketio-5.4.0.tar.gz ++ 9958 lines of diff (skipped)
commit python-python-socketio for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-python-socketio for openSUSE:Factory checked in at 2021-06-01 10:37:08 Comparing /work/SRC/openSUSE:Factory/python-python-socketio (Old) and /work/SRC/openSUSE:Factory/.python-python-socketio.new.1898 (New) Package is "python-python-socketio" Tue Jun 1 10:37:08 2021 rev:2 rq:895563 version:5.3.0 Changes: --- /work/SRC/openSUSE:Factory/python-python-socketio/python-python-socketio.changes 2020-12-04 21:29:06.574178348 +0100 +++ /work/SRC/openSUSE:Factory/.python-python-socketio.new.1898/python-python-socketio.changes 2021-06-01 10:38:10.984886731 +0200 @@ -1,0 +2,11 @@ +Tue May 25 17:26:54 UTC 2021 - Ben Greiner + +- Update to 5.3.0 + * Big changelog, see CHANGES.md + +--- +Sun May 16 09:43:42 UTC 2021 - Axel Braun + +- python2 build removed + +--- Old: python-socketio-4.6.1.tar.gz New: python-socketio-5.3.0.tar.gz Other differences: -- ++ python-python-socketio.spec ++ --- /var/tmp/diff_new_pack.RLcIyE/_old 2021-06-01 10:38:11.528887657 +0200 +++ /var/tmp/diff_new_pack.RLcIyE/_new 2021-06-01 10:38:11.532887664 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-python-socketio # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,30 +16,28 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} +%{?!python_module:%define python_module() python3-%{**}} +%define skip_python2 1 Name: python-python-socketio -Version:4.6.1 +Version:5.3.0 Release:0 Summary:SocketIO server License:MIT URL:http://github.com/miguelgrinberg/python-socketio/ Source: https://github.com/miguelgrinberg/python-socketio/archive/v%{version}.tar.gz#/python-socketio-%{version}.tar.gz +BuildRequires: %{python_module bidict >= 0.21.0} +BuildRequires: %{python_module python-engineio >= 4.1.0} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros -Requires: python-python-engineio >= 3.13.0 -Requires: python-six >= 1.9.0 +Requires: python-bidict >= 0.21.0 +Requires: python-python-engineio >= 4.1.0 Suggests: python-aiohttp >= 3.4 Suggests: python-requests >= 2.21.0 Suggests: python-websocket-client >= 0.54.0 Suggests: python-websockets >= 7.0 BuildArch: noarch -# SECTION test requirements -BuildRequires: %{python_module mock} BuildRequires: %{python_module pytest} -BuildRequires: %{python_module python-engineio >= 3.13.0} -BuildRequires: %{python_module six >= 1.9.0} -# /SECTION %python_subpackages %description @@ -61,6 +59,7 @@ %files %{python_files} %doc README.rst %license LICENSE -%{python_sitelib}/* +%{python_sitelib}/socketio +%{python_sitelib}/python_socketio-%{version}*-info %changelog ++ python-socketio-4.6.1.tar.gz -> python-socketio-5.3.0.tar.gz ++ 11415 lines of diff (skipped)