stable

python-valkey-6.0.2-1.fc41

FEDORA-2024-2f383f52a0 created by bugant 8 months ago for Fedora 41

Bump to version 6.0.2 (#2312049)


Skip ocsp extra for Fedora release prior to F41


Bump to 6.0.1

How to install

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-2f383f52a0

This update has been submitted for testing by bugant.

8 months ago

This update's test gating status has been changed to 'ignored'.

8 months ago

This update has obsoleted python-valkey-6.0.1-3.fc41, and has inherited its bugs and notes.

8 months ago

This update has been pushed to testing.

8 months ago
User Icon aligx commented & provided feedback 8 months ago
karma

Installed and tested basic functionalities found here and results are as expected:

Installed this version by updating the latest stable:

[root@fedora /]# sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2024-2f383f52a0                                                                                                                      
Updating and loading repositories:                                                                                                                                                                                              
 Fedora 41 - x86_64 - Updates                                                                                                                                                           100% |  34.9 KiB/s |  27.6 KiB |  00m01s
 Fedora 41 openh264 (From Cisco) - x86_64                                                                                                                                               100% |   2.4 KiB/s | 989.0   B |  00m00s
 Fedora 41 - x86_64                                                                                                                                                                     100% |  38.7 KiB/s |  19.2 KiB |  00m00s
 Fedora 41 - x86_64 - Test Updates                                                                                                                                                      100% |   1.1 MiB/s |   2.1 MiB |  00m02s
Repositories loaded.                                                                                                                                                                                                            
Package                                                                      Arch             Version                                                                      Repository                                       Size
Upgrading:                                                                                                                                                                                                                      
 python3-valkey                                                              noarch           6.0.2-1.fc41                                                                 updates-testing                               2.3 MiB
   replacing python3-valkey                                                  noarch           6.0.0-1.fc41                                                                 fedora                                        2.3 MiB

Transaction Summary:                                                                                                                                                                                                            
 Upgrading:         1 packages                                                                                                                                                                                                  
 Replacing:         1 packages                                                                                                                                                                                                  

Total size of inbound packages is 549 KiB. Need to download 549 KiB.                                                                                                                                                            
After this operation 1 KiB will be used (install 2 MiB, remove 2 MiB).                                                                                                                                                          
Is this ok [y/N]: y                                                                                                                                                                                                             
[1/1] python3-valkey-0:6.0.2-1.fc41.noarch                                                                                                                                              100% | 911.9 KiB/s | 548.9 KiB |  00m01s
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
[1/1] Total                                                                                                                                                                             100% | 470.0 KiB/s | 548.9 KiB |  00m01s
Running transaction                                                                                                                                                                                                             
[1/4] Verify package files                                                                                                                                                              100% | 333.0   B/s |   1.0   B |  00m00s
[2/4] Prepare transaction                                                                                                                                                               100% | 400.0   B/s |   2.0   B |  00m00s
[3/4] Upgrading python3-valkey-0:6.0.2-1.fc41.noarch                                                                                                                                    100% |  48.4 MiB/s |   2.4 MiB |  00m00s
[4/4] Erasing python3-valkey-0:6.0.0-1.fc41.noarch                                                                                                                 100% [==================] |  21.4 KiB/s | 240.0   B | -00m00s
>>> Running trigger-install scriptlet: glibc-common-0:2.40-3.fc41.x86_64warning: posix.fork(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.execute() instead                                         
warning: posix.wait(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.execute() instead                                                                                                                 
[4/4] Erasing python3-valkey-0:6.0.0-1.fc41.noarch                                                                                                                                      100% |   2.0 KiB/s | 240.0   B |  00m00s
>>> Running trigger-install scriptlet: glibc-common-0:2.40-3.fc41.x86_64
>>> Stop trigger-install scriptlet: glibc-common-0:2.40-3.fc41.x86_64
Complete!

Usage:

[root@fedora /]# python3
Python 3.13.0rc2 (main, Sep  7 2024, 00:00:00) [GCC 14.2.1 20240801 (Red Hat 14.2.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')
... r.get('foo')
... r = valkey.Valkey(host='localhost', port=6379, db=0, protocol=3)
... pool = valkey.ConnectionPool(host='localhost', port=6379, db=0)
... r = valkey.Valkey(connection_pool=pool)
... pipe = r.pipeline()
... pipe.set('foo', 5)
... pipe.set('bar', 18.5)
... pipe.set('blee', "hello world!")
... pipe.execute()
... 
... 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}
>>> import valkey
... 
>>> r = valkey.Valkey(host='localhost', port=6379, db=0)
... 
>>> r.set('foo', 'bar')
... 
True
>>> r.get('foo')
b'bar'
>>> r = valkey.Valkey(host='localhost', port=6379, db=0, protocol=3)
>>> pool = valkey.ConnectionPool(host='localhost', port=6379, db=0)
>>> r = valkey.Valkey(connection_pool=pool)
>>> pipe = r.pipeline()
>>> pipe.set('foo', 5)
... pipe.set('bar', 18.5)
... pipe.set('blee', "hello world!")
... 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}

This update has been submitted for stable by bodhi.

8 months ago

This update has been pushed to stable.

8 months ago

Please log in to add feedback.

Metadata
Type
enhancement
Karma
1
Signed
Content Type
RPM
Test Gating
Autopush Settings
Unstable by Karma
-3
Stable by Karma
3
Stable by Time
3 days
Dates
submitted
8 months ago
in testing
8 months ago
in stable
8 months ago
approved
8 months ago

Automated Test Results