Bump to version 6.0.2 (#2312049)
Skip ocsp extra for Fedora release prior to F41
Bump to 6.0.1
Updates may require up to 24 hours to propagate to mirrors. If the following command doesn't work, please retry later:
sudo dnf upgrade --refresh --advisory=FEDORA-2024-8320864b6d
This update has been submitted for testing by bugant.
This update's test gating status has been changed to 'ignored'.
This update has obsoleted python-valkey-6.0.1-3.fc39, and has inherited its bugs and notes.
This update has been pushed to testing.
Installed and tested basic functionalities found here and results are as expected:
[root@fedora /]# dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2024-8320864b6d [root@fedora /]# dnf config-manager --set-enabled updates-testing [root@fedora /]# dnf install python3-valkey [root@fedora /]# rpm -qa | grep valkey python3-valkey-6.0.2-1.fc39.noarch [root@fedora /]# cat /etc/fedora-release Fedora release 39 (Thirty Nine) [root@fedora /]# python3 Python 3.12.5 (main, Aug 7 2024, 00:00:00) [GCC 13.3.1 20240522 (Red Hat 13.3.1-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import valkey >>> r = valkey.Valkey(host='localhost', port=6379, db=0) >>> r.set('foo', 'bar') True >>> r.get('foo') b'bar' >>> pool = valkey.ConnectionPool(host='localhost', port=6379, db=0) >>> r = valkey.Valkey(connection_pool=pool) >>> pipe = r.pipeline() >>> pipe.set('foo', 5) <valkey.client.Pipeline(<valkey.connection.ConnectionPool(<valkey.connection.Connection(host=localhost,port=6379,db=0)>)>)> >>> pipe.set('bar', 18.5) <valkey.client.Pipeline(<valkey.connection.ConnectionPool(<valkey.connection.Connection(host=localhost,port=6379,db=0)>)>)> >>> pipe.set('blee', "hello world!") <valkey.client.Pipeline(<valkey.connection.ConnectionPool(<valkey.connection.Connection(host=localhost,port=6379,db=0)>)>)> >>> pipe.execute() [True, True, True] >>> p = r.pubsub() >>> p.subscribe('my-first-channel', 'my-second-channel') >>> p.get_message() {'type': 'subscribe', 'pattern': None, 'channel': b'my-first-channel', 'data': 1} >>> p.get_message() {'type': 'subscribe', 'pattern': None, 'channel': b'my-second-channel', 'data': 2} >>> p.get_message() >>>
This update has been submitted for stable by bodhi.
This update has been pushed to stable.
Please log in to add feedback.
Confirm request to re-trigger tests.
This update has been submitted for testing by bugant.
This update's test gating status has been changed to 'ignored'.
This update has obsoleted python-valkey-6.0.1-3.fc39, and has inherited its bugs and notes.
This update has been pushed to testing.
Installed and tested basic functionalities found here and results are as expected:
This update has been submitted for stable by bodhi.
This update has been pushed to stable.