Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package iredis for openSUSE:Factory checked in at 2026-01-26 11:00:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/iredis (Old) and /work/SRC/openSUSE:Factory/.iredis.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "iredis" Mon Jan 26 11:00:50 2026 rev:11 rq:1328492 version:1.15.2 Changes: -------- --- /work/SRC/openSUSE:Factory/iredis/iredis.changes 2025-04-26 22:25:31.070768710 +0200 +++ /work/SRC/openSUSE:Factory/.iredis.new.1928/iredis.changes 2026-01-26 11:01:18.359414781 +0100 @@ -1,0 +2,9 @@ +Sun Jan 18 13:49:30 UTC 2026 - Ben Greiner <[email protected]> + +- Update to 1.15.2 + * Add support for IREDIS_CONFIG env +- Fix requirements + * Nobody needs full poetry to build a rpm package + * Bump to current minimum versions + +------------------------------------------------------------------- Old: ---- iredis-1.15.1.tar.gz New: ---- iredis-1.15.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ iredis.spec ++++++ --- /var/tmp/diff_new_pack.QlxTzo/_old 2026-01-26 11:01:18.999441402 +0100 +++ /var/tmp/diff_new_pack.QlxTzo/_new 2026-01-26 11:01:19.003441569 +0100 @@ -1,7 +1,7 @@ # # spec file for package iredis # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %define pythons python3 Name: iredis -Version: 1.15.1 +Version: 1.15.2 Release: 0 Summary: Terminal client for Redis with auto-completion and syntax highlighting License: BSD-3-Clause @@ -27,35 +27,34 @@ BuildRequires: fdupes BuildRequires: python-rpm-macros BuildRequires: python3-pip -BuildRequires: python3-poetry -BuildRequires: python3-setuptools +BuildRequires: python3-poetry-core # SECTION tests # for killall BuildRequires: psmisc +BuildRequires: python3-freezegun +BuildRequires: python3-pexpect >= 4.7 +BuildRequires: python3-pytest +# /SECTION +# SECTION runtime BuildRequires: python3-Pygments >= 2 BuildRequires: python3-click >= 8.0 BuildRequires: python3-configobj >= 5.0 -BuildRequires: python3-dateutil >= 2.8.2 -BuildRequires: python3-freezegun BuildRequires: python3-mistune >= 3.0 BuildRequires: python3-packaging >= 23.0 -BuildRequires: python3-pexpect -BuildRequires: python3-pip BuildRequires: python3-prompt_toolkit >= 3 -BuildRequires: python3-pytest -BuildRequires: python3-redis >= 4.5.3 +BuildRequires: python3-python-dateutil >= 2.8.2 +BuildRequires: python3-redis >= 5.0.0 BuildRequires: python3-wcwidth >= 0.1.9 -BuildRequires: python3-wheel BuildRequires: redis >= 5.0.0 # /SECTION Requires: python3-Pygments >= 2 Requires: python3-click >= 8.0 Requires: python3-configobj >= 5.0 -Requires: python3-dateutil >= 2.8.2 -Requires: python3-mistune >= 2.0 +Requires: python3-mistune >= 3.0 Requires: python3-packaging >= 23.0 Requires: python3-prompt_toolkit >= 3 -Requires: python3-redis >= 3 +Requires: python3-python-dateutil >= 2.8.2 +Requires: python3-redis >= 5 Requires: python3-wcwidth >= 0.1.9 Recommends: redis >= 5.0.0 BuildArch: noarch ++++++ iredis-1.15.1.tar.gz -> iredis-1.15.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iredis-1.15.1/.bumpversion.cfg new/iredis-1.15.2/.bumpversion.cfg --- old/iredis-1.15.1/.bumpversion.cfg 2025-04-21 12:54:08.000000000 +0200 +++ new/iredis-1.15.2/.bumpversion.cfg 2025-08-07 18:04:50.000000000 +0200 @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.15.1 +current_version = 1.15.2 commit = True tag = True diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iredis-1.15.1/iredis/__init__.py new/iredis-1.15.2/iredis/__init__.py --- old/iredis-1.15.1/iredis/__init__.py 2025-04-21 12:54:08.000000000 +0200 +++ new/iredis-1.15.2/iredis/__init__.py 2025-08-07 18:04:50.000000000 +0200 @@ -1 +1 @@ -__version__ = "1.15.1" +__version__ = "1.15.2" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iredis-1.15.1/iredis/entry.py new/iredis-1.15.2/iredis/entry.py --- old/iredis-1.15.1/iredis/entry.py 2025-04-21 12:54:08.000000000 +0200 +++ new/iredis-1.15.2/iredis/entry.py 2025-08-07 18:04:50.000000000 +0200 @@ -265,7 +265,11 @@ @click.option( "--iredisrc", default="~/.iredisrc", - help="Config file for iredis, default is ~/.iredisrc.", + envvar="IREDIS_CONFIG", + help=( + "Config file for iredis, default is ~/.iredisrc. " + "You can also set config path via environment variable `IREDIS_CONFIG`." + ), ) @click.option("--decode", default=None, help=DECODE_HELP) @click.option("--client_name", help="Assign a name to the current connection.") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/iredis-1.15.1/pyproject.toml new/iredis-1.15.2/pyproject.toml --- old/iredis-1.15.1/pyproject.toml 2025-04-21 12:54:08.000000000 +0200 +++ new/iredis-1.15.2/pyproject.toml 2025-08-07 18:04:50.000000000 +0200 @@ -1,6 +1,6 @@ [tool.poetry] name = "iredis" -version = "1.15.1" +version = "1.15.2" description = "Terminal client for Redis with auto-completion and syntax highlighting." authors = ["laixintao <[email protected]>"] readme = 'README.md'
