Update dependency pytest-redis to v4 #459

Merged
_renovate merged 1 commit from renovate/pytest-redis-4.x into master 2026-05-05 12:12:26 +02:00
_renovate commented 2026-03-25 16:20:23 +01:00 (Migrated from edugit.org)

This MR contains the following updates:

Package Change Age Confidence
pytest-redis (changelog) ^3.1.3^4.0.0 age confidence

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

dbfixtures/pytest-redis (pytest-redis)

v4.0.0

Compare Source

===============================

Breaking changes

  • RedisConfigType (TypedDict) is removed and replaced by the RedisConfig dataclass.

    Update callers of get_config to expect and handle a RedisConfig return value, switch access from config["key"] to config.key,
    and replace any RedisConfigType imports with RedisConfig. (#&#8203;891 <https://github.com/dbfixtures/pytest-redis/issues/891>__)

  • Drop support for Python 3.9 (#&#8203;900 <https://github.com/dbfixtures/pytest-redis/issues/900>__)

  • Rename the redis_nooproc fixture to redis_noproc (typo fix); update any fixture names accordingly.
    The default redis_timeout is now 15 seconds (was 30).

Features

  • Improved xdist compatibility by introducing port-locking mechanism.

    If one worker claims a port, it will lock it, and other xdist workers will
    either check another port or raise an error with clear message. (#&#8203;895 <https://github.com/dbfixtures/pytest-redis/issues/895>__)

  • Mark support for Python 3.14 (#&#8203;900 <https://github.com/dbfixtures/pytest-redis/issues/900>__)

Bugfixes

  • Fixed an issue where setting syslog parameter to False on a fixture, would have the same effect as None, in which case,
    the value used would be deferred to the configured one, which could be set to True. (#&#8203;912 <https://github.com/dbfixtures/pytest-redis/issues/912>__)

Documentation

  • Add architecture diagram to readme. (#&#8203;898 <https://github.com/dbfixtures/pytest-redis/issues/898>__)
  • README updates: add a Quickstart section, clarify fixture scopes and Redis availability,
    and fix wording for the redis_noproc fixture and timeout defaults.

Miscellaneus

  • Run xdist test with n auto flag.

    This actually runs tests on several workers which makes it more likely to detect any bugs when running tests. (#&#8203;895 <https://github.com/dbfixtures/pytest-redis/issues/895>__)

  • Replaced black with ruff format (#&#8203;896 <https://github.com/dbfixtures/pytest-redis/issues/896>__)

  • Added CI pipeline to test pytest-redis against oldest supported package versions. (#&#8203;897 <https://github.com/dbfixtures/pytest-redis/issues/897>__)

  • Validate package configuration against supported and required python versions in pre-commit. (#&#8203;899 <https://github.com/dbfixtures/pytest-redis/issues/899>__)

  • Add release workflow to ease release process (#&#8203;901 <https://github.com/dbfixtures/pytest-redis/issues/901>__)

  • Update the tests, to rely on editable install instead of the source code location. (#&#8203;908 <https://github.com/dbfixtures/pytest-redis/issues/908>__)

  • Add Redis 8.x versions to CI. (#&#8203;909 <https://github.com/dbfixtures/pytest-redis/issues/909>__)

  • Update pytest configuration to toml-native (#&#8203;917 <https://github.com/dbfixtures/pytest-redis/issues/917>__)

  • Adjust links after repository transfer

  • Adjust workflows for actions-reuse 3

  • Fix CI warning: Unexpected input(s) 'python-version', valid inputs are ['command', 'env']

  • Fix coveragerc configuration

  • Refactored CI to use shared internal workflows instead of actions.

    Such workflows are updated by dependabot, while actions not yet.

  • Update really old composite actions in internal actions/pytest

  • Use pre-commit for maintaining code style and linting


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Mend Renovate.

This MR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [pytest-redis](https://github.com/dbfixtures/pytest-redis) ([changelog](https://github.com/dbfixtures/pytest-redis/blob/v4.0.0/CHANGES.rst)) | `^3.1.3` → `^4.0.0` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/pytest-redis/4.0.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pytest-redis/3.1.3/4.0.0?slim=true) | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the [Dependency Dashboard](#33) for more information. --- ### Release Notes <details> <summary>dbfixtures/pytest-redis (pytest-redis)</summary> ### [`v4.0.0`](https://github.com/dbfixtures/pytest-redis/blob/HEAD/CHANGES.rst#pytest-redis-400-2026-02-28) [Compare Source](https://github.com/dbfixtures/pytest-redis/compare/v3.1.3...v4.0.0) \=============================== ## Breaking changes - RedisConfigType (TypedDict) is removed and replaced by the RedisConfig dataclass. Update callers of get\_config to expect and handle a RedisConfig return value, switch access from config\["key"] to config.key, and replace any RedisConfigType imports with RedisConfig. (`#&#8203;891 <https://github.com/dbfixtures/pytest-redis/issues/891>`\_\_) - Drop support for Python 3.9 (`#&#8203;900 <https://github.com/dbfixtures/pytest-redis/issues/900>`\_\_) - Rename the `redis_nooproc` fixture to `redis_noproc` (typo fix); update any fixture names accordingly. The default `redis_timeout` is now 15 seconds (was 30). ## Features - Improved xdist compatibility by introducing port-locking mechanism. If one worker claims a port, it will lock it, and other xdist workers will either check another port or raise an error with clear message. (`#&#8203;895 <https://github.com/dbfixtures/pytest-redis/issues/895>`\_\_) - Mark support for Python 3.14 (`#&#8203;900 <https://github.com/dbfixtures/pytest-redis/issues/900>`\_\_) ## Bugfixes - Fixed an issue where setting `syslog` parameter to `False` on a fixture, would have the same effect as `None`, in which case, the value used would be deferred to the configured one, which could be set to `True`. (`#&#8203;912 <https://github.com/dbfixtures/pytest-redis/issues/912>`\_\_) ## Documentation - Add architecture diagram to readme. (`#&#8203;898 <https://github.com/dbfixtures/pytest-redis/issues/898>`\_\_) - README updates: add a Quickstart section, clarify fixture scopes and Redis availability, and fix wording for the `redis_noproc` fixture and timeout defaults. ## Miscellaneus - Run xdist test with `n auto` flag. This actually runs tests on several workers which makes it more likely to detect any bugs when running tests. (`#&#8203;895 <https://github.com/dbfixtures/pytest-redis/issues/895>`\_\_) - Replaced black with ruff format (`#&#8203;896 <https://github.com/dbfixtures/pytest-redis/issues/896>`\_\_) - Added CI pipeline to test pytest-redis against oldest supported package versions. (`#&#8203;897 <https://github.com/dbfixtures/pytest-redis/issues/897>`\_\_) - Validate package configuration against supported and required python versions in pre-commit. (`#&#8203;899 <https://github.com/dbfixtures/pytest-redis/issues/899>`\_\_) - Add release workflow to ease release process (`#&#8203;901 <https://github.com/dbfixtures/pytest-redis/issues/901>`\_\_) - Update the tests, to rely on editable install instead of the source code location. (`#&#8203;908 <https://github.com/dbfixtures/pytest-redis/issues/908>`\_\_) - Add Redis 8.x versions to CI. (`#&#8203;909 <https://github.com/dbfixtures/pytest-redis/issues/909>`\_\_) - Update pytest configuration to toml-native (`#&#8203;917 <https://github.com/dbfixtures/pytest-redis/issues/917>`\_\_) - Adjust links after repository transfer - Adjust workflows for actions-reuse 3 - Fix CI warning: Unexpected input(s) 'python-version', valid inputs are \['command', 'env'] - Fix coveragerc configuration - Refactored CI to use shared internal workflows instead of actions. Such workflows are updated by dependabot, while actions not yet. - Update really old composite actions in internal actions/pytest - Use pre-commit for maintaining code style and linting </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My44OS44IiwidXBkYXRlZEluVmVyIjoiNDMuMTYxLjAiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==-->
_renovate commented 2026-03-25 16:20:30 +01:00 (Migrated from edugit.org)

mentioned in issue #33

mentioned in issue #33
_renovate commented 2026-04-02 18:23:30 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-25 20:57:08 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-26 00:05:58 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-26 00:37:16 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-27 00:05:27 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-27 00:37:39 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-27 20:41:53 +02:00 (Migrated from edugit.org)

added 11 commits

  • f9ccb416...cf2d91ef - 10 commits from branch master
  • 3d0a83bb - Update dependency pytest-redis to v4

Compare with previous version

added 11 commits <ul><li>f9ccb416...cf2d91ef - 10 commits from branch <code>master</code></li><li>3d0a83bb - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=86921&start_sha=f9ccb416f90de93f6ac0ce2048910afc80c94fa2)
_renovate commented 2026-04-28 01:15:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • 081f8d9c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>081f8d9c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=87938&start_sha=3d0a83bb3ac93f8d47fecdd17965b67cbb748a40)
_renovate commented 2026-04-28 19:25:33 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-28 20:39:40 +02:00 (Migrated from edugit.org)

added 11 commits

  • 081f8d9c...f193da3d - 10 commits from branch master
  • f5f3f5e8 - Update dependency pytest-redis to v4

Compare with previous version

added 11 commits <ul><li>081f8d9c...f193da3d - 10 commits from branch <code>master</code></li><li>f5f3f5e8 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=89920&start_sha=081f8d9c604fac8475f28c3f264cec940a73e3f4)
_renovate commented 2026-04-28 23:28:17 +02:00 (Migrated from edugit.org)

added 7 commits

  • f5f3f5e8...0bc3dc7e - 6 commits from branch master
  • 4b4d2c65 - Update dependency pytest-redis to v4

Compare with previous version

added 7 commits <ul><li>f5f3f5e8...0bc3dc7e - 6 commits from branch <code>master</code></li><li>4b4d2c65 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=90099&start_sha=f5f3f5e8d8eded91d2471f3d63046940665e9a95)
_renovate commented 2026-04-28 23:28:18 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-29 02:58:37 +02:00 (Migrated from edugit.org)

added 2 commits

  • efdee08a - 1 commit from branch master
  • a4436e77 - Update dependency pytest-redis to v4

Compare with previous version

added 2 commits <ul><li>efdee08a - 1 commit from branch <code>master</code></li><li>a4436e77 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=90394&start_sha=4b4d2c659840baf8f8dd2364c1ef837b18d49067)
_renovate commented 2026-04-29 02:58:39 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-29 05:40:01 +02:00 (Migrated from edugit.org)

added 1 commit

  • 19b242f4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>19b242f4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=90738&start_sha=a4436e77a3cf285e53177267fb9d93f09ad1faf3)
_renovate commented 2026-04-29 08:54:34 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4e320c2d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4e320c2d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=91325&start_sha=19b242f4f93f5ef0cf45ae25599dbc10187815c2)
_renovate commented 2026-04-29 09:57:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2223096c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2223096c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=91536&start_sha=4e320c2de51484efaa92671ab427b4992806f82d)
_renovate commented 2026-04-29 10:06:58 +02:00 (Migrated from edugit.org)

added 1 commit

  • e79c2aa7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>e79c2aa7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=91560&start_sha=2223096cf79e0a5ade3721b290ae8533034bbe6a)
_renovate commented 2026-04-29 10:26:19 +02:00 (Migrated from edugit.org)

added 1 commit

  • 166c6bd5 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>166c6bd5 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=91593&start_sha=e79c2aa75ff7091ebe2391c8545eeb978fa28ffb)
_renovate commented 2026-04-29 11:10:47 +02:00 (Migrated from edugit.org)

added 1 commit

  • a9984c36 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>a9984c36 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=91787&start_sha=166c6bd59efdaf093c4172d1af113b3a3eb5d919)
_renovate commented 2026-04-29 11:39:31 +02:00 (Migrated from edugit.org)

added 1 commit

  • 91959c9a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>91959c9a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=91932&start_sha=a9984c363ee0d7faae714fc7122d26744503b00a)
_renovate commented 2026-04-29 12:21:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • 48c6e41c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>48c6e41c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=92032&start_sha=91959c9a9adc0aba14d41e951bb0e1f1d5315e26)
_renovate commented 2026-04-29 18:17:39 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7525acc4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7525acc4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=92592&start_sha=48c6e41ca24f2c964d43f4ff889114a0631e210f)
_renovate commented 2026-04-29 18:53:44 +02:00 (Migrated from edugit.org)

added 1 commit

  • 11750a3d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>11750a3d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=92706&start_sha=7525acc49df55c68ee8f77444a872f00dffa6a6a)
_renovate commented 2026-04-29 20:03:17 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7cfd1534 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7cfd1534 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=92821&start_sha=11750a3da225998e5b6138512374497acb5412d1)
_renovate commented 2026-04-29 20:14:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1a149554 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1a149554 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=92840&start_sha=7cfd1534263b8850b46d309fb7deeef3aac5d905)
_renovate commented 2026-04-30 01:33:04 +02:00 (Migrated from edugit.org)

added 1 commit

  • 08898c07 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>08898c07 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=93320&start_sha=1a1495544fa71933761ec1844534f54d773a5d07)
_renovate commented 2026-04-30 03:39:35 +02:00 (Migrated from edugit.org)

added 1 commit

  • cf64e6b9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>cf64e6b9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=93636&start_sha=08898c07bb49bf795f631c5833a0db0354e50bf7)
_renovate commented 2026-04-30 04:50:06 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-30 05:16:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5ca2b845 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5ca2b845 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=93835&start_sha=cf64e6b98d4b726f7eb65b814c24cfa7bd942053)
_renovate commented 2026-04-30 07:53:10 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-04-30 12:58:53 +02:00 (Migrated from edugit.org)

added 1 commit

  • 573aa129 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>573aa129 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=94453&start_sha=5ca2b845b5a8d8ea56271a732cb36593053d58d6)
_renovate commented 2026-04-30 14:16:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • b9dfdb6d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>b9dfdb6d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=94552&start_sha=573aa12949642fdb621a2bc447322c912f93828c)
_renovate commented 2026-04-30 19:25:01 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1a63a24d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1a63a24d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=95031&start_sha=b9dfdb6d8a58b9c5c8a37c1ffe26c707c011fa6e)
_renovate commented 2026-04-30 23:35:19 +02:00 (Migrated from edugit.org)

added 2 commits

  • 9312c4e5 - 1 commit from branch master
  • 09e35289 - Update dependency pytest-redis to v4

Compare with previous version

added 2 commits <ul><li>9312c4e5 - 1 commit from branch <code>master</code></li><li>09e35289 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=95419&start_sha=1a63a24d0bfefe313c7da22cb34e79c03ab5a6d2)
_renovate commented 2026-05-01 00:38:17 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-01 01:50:49 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-01 10:53:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 479896b3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>479896b3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=96003&start_sha=09e352891c93c9f2a5a9db7a43b87ba9f0b21853)
_renovate commented 2026-05-01 16:27:31 +02:00 (Migrated from edugit.org)

added 6 commits

  • 479896b3...4552b4d6 - 5 commits from branch master
  • 2ab88377 - Update dependency pytest-redis to v4

Compare with previous version

added 6 commits <ul><li>479896b3...4552b4d6 - 5 commits from branch <code>master</code></li><li>2ab88377 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=96452&start_sha=479896b3cf186f241a9e8629dbf50bb011d3a1bd)
_renovate commented 2026-05-01 17:43:35 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5867bedf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5867bedf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=96552&start_sha=2ab88377982382268ec7a0bfca9dedfd17fad5d4)
_renovate commented 2026-05-01 22:26:35 +02:00 (Migrated from edugit.org)

added 1 commit

  • 13f8b455 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>13f8b455 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=96860&start_sha=5867bedf2fcc2e5efee88dc47ee80c75a09d3ca1)
_renovate commented 2026-05-02 04:58:07 +02:00 (Migrated from edugit.org)

added 2 commits

  • bb6d295e - 1 commit from branch master
  • 4a3e87cf - Update dependency pytest-redis to v4

Compare with previous version

added 2 commits <ul><li>bb6d295e - 1 commit from branch <code>master</code></li><li>4a3e87cf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=97352&start_sha=13f8b4555b90b8cad7446e35db56b7936b4230db)
_renovate commented 2026-05-02 08:22:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7c4cb8a3 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7c4cb8a3 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=97654&start_sha=4a3e87cf30486ef9cd2479bb175320ae4f3a883c)
_renovate commented 2026-05-02 13:29:47 +02:00 (Migrated from edugit.org)

added 1 commit

  • f4a60eb4 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f4a60eb4 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=98120&start_sha=7c4cb8a3a8980bb4369a990781effa0b1f13847d)
_renovate commented 2026-05-02 14:26:08 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-02 16:54:37 +02:00 (Migrated from edugit.org)

added 1 commit

  • faf37d5a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>faf37d5a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=98297&start_sha=f4a60eb485ff3733ed442ee115e0671fff61a242)
_renovate commented 2026-05-02 16:54:38 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-02 17:54:10 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7ae9f0ef - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7ae9f0ef - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=98357&start_sha=faf37d5aebd5a76d2717ae5b2bd0dcea1d590301)
_renovate commented 2026-05-02 20:35:27 +02:00 (Migrated from edugit.org)

added 1 commit

  • d7991010 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d7991010 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=98532&start_sha=7ae9f0ef3f61ce72b1817371bdd0a063e5bc5ea0)
_renovate commented 2026-05-03 00:44:31 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7655ded9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7655ded9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=98826&start_sha=d7991010cd4ad39aacab485a3e9171438b3c2835)
_renovate commented 2026-05-03 00:44:32 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-03 01:32:36 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-03 02:16:25 +02:00 (Migrated from edugit.org)

added 1 commit

  • 90230f49 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>90230f49 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=99097&start_sha=7655ded9c2e7e1f12cd20efc6c8ef6cded4f76be)
_renovate commented 2026-05-03 03:36:13 +02:00 (Migrated from edugit.org)

added 1 commit

  • 7c4ff370 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>7c4ff370 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=99320&start_sha=90230f490bf53a8613a0c2aa91b68c620778e78c)
_renovate commented 2026-05-03 06:23:50 +02:00 (Migrated from edugit.org)

added 1 commit

  • 32ac3524 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>32ac3524 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=99509&start_sha=7c4ff370359faf606ffc46d9b6da5abede927d53)
_renovate commented 2026-05-03 10:24:06 +02:00 (Migrated from edugit.org)

added 1 commit

  • f22861cf - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>f22861cf - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=99743&start_sha=32ac352430a42eed50042b19890022e6ac08d14f)
_renovate commented 2026-05-03 11:08:57 +02:00 (Migrated from edugit.org)

added 1 commit

  • 28a22973 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>28a22973 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=99788&start_sha=f22861cf051fb51ba53da533b1446c71f6505004)
_renovate commented 2026-05-03 11:08:57 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-03 12:50:18 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-03 16:51:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4a23a35d - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4a23a35d - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=100225&start_sha=28a2297334357dd8eee0ed79abe01a352aa712e6)
_renovate commented 2026-05-03 17:11:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • c75cd284 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>c75cd284 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=100256&start_sha=4a23a35d1042ac604a590cb35188b1181921b0f6)
_renovate commented 2026-05-03 18:17:47 +02:00 (Migrated from edugit.org)

added 1 commit

  • 92959b5a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>92959b5a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=100361&start_sha=c75cd2849f5ef3e48a0f8b47cafbf5519ca49eb5)
_renovate commented 2026-05-03 18:57:43 +02:00 (Migrated from edugit.org)

added 1 commit

  • 0530fcb9 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>0530fcb9 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=100424&start_sha=92959b5a838caa8294502a63f4dc2476105b742b)
_renovate commented 2026-05-03 21:23:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • d7678e44 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>d7678e44 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=100613&start_sha=0530fcb94876d8aa6f4f0428be3b2ca996dedd9d)
_renovate commented 2026-05-03 22:25:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 4d63264a - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>4d63264a - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=100694&start_sha=d7678e44a2e698a9fe263224b264217e45340923)
_renovate commented 2026-05-03 23:30:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • 5c956e96 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>5c956e96 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=100805&start_sha=4d63264a136bea9b677815dab601a8812c261f52)
_renovate commented 2026-05-04 01:49:39 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-04 04:58:01 +02:00 (Migrated from edugit.org)

added 1 commit

  • 6f3b940f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>6f3b940f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=101139&start_sha=5c956e96b2108bb278ded23ea17e45b198d945f1)
_renovate commented 2026-05-04 04:58:02 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-04 05:26:52 +02:00 (Migrated from edugit.org)

added 1 commit

  • 680b38fd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>680b38fd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=101174&start_sha=6f3b940fd180a3af0ec5a2c1923ce4487feb1659)
_renovate commented 2026-05-04 07:21:00 +02:00 (Migrated from edugit.org)

added 1 commit

  • 105266e1 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>105266e1 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=101328&start_sha=680b38fd4c3601330ff6a6007e008617c64e7f9c)
_renovate commented 2026-05-04 13:33:08 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2faab543 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2faab543 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=101829&start_sha=105266e1d9626224ccf3277e193366c8a0849dc7)
_renovate commented 2026-05-04 13:45:12 +02:00 (Migrated from edugit.org)

added 1 commit

  • 76d04a3e - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>76d04a3e - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=101850&start_sha=2faab5432a5b9acafe1e10e599491362719eeeeb)
_renovate commented 2026-05-04 14:19:21 +02:00 (Migrated from edugit.org)

added 1 commit

  • ce93c05c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ce93c05c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=101924&start_sha=76d04a3ee14c34a14771c8e9ad4adfdc8a23ca11)
_renovate commented 2026-05-04 17:16:14 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2338704f - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2338704f - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=102169&start_sha=ce93c05c0dcec87b0113e508ae193aa00bd95a94)
_renovate commented 2026-05-04 17:53:33 +02:00 (Migrated from edugit.org)

added 1 commit

  • 458bd1e0 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>458bd1e0 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=102218&start_sha=2338704f499aa368e46c452b7488a558160d0c89)
_renovate commented 2026-05-04 23:18:31 +02:00 (Migrated from edugit.org)

added 1 commit

  • 2f2b9157 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>2f2b9157 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=102660&start_sha=458bd1e098a46b8987c347bf7757fe68da349e87)
_renovate commented 2026-05-05 00:34:20 +02:00 (Migrated from edugit.org)

added 1 commit

  • 3a81dc59 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>3a81dc59 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=102730&start_sha=2f2b9157476b686b62ad39a3e33960e9f9749e14)
_renovate commented 2026-05-05 00:39:49 +02:00 (Migrated from edugit.org)

added 1 commit

  • 16d04989 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>16d04989 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=102749&start_sha=3a81dc59dc7944ef67d3a045e9aeebadc47715b3)
_renovate commented 2026-05-05 02:08:11 +02:00 (Migrated from edugit.org)

added 1 commit

  • 23b21afc - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>23b21afc - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=102879&start_sha=16d04989382c1918b90fdd9cdd9d46105bf59d3c)
_renovate commented 2026-05-05 03:42:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 96d8143c - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>96d8143c - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=103032&start_sha=23b21afcb0c77d046982f311da1bf463df6514b8)
_renovate commented 2026-05-05 05:19:28 +02:00 (Migrated from edugit.org)

added 1 commit

  • ad234f03 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ad234f03 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=103157&start_sha=96d8143c431274e54cd096c316855631be2ed35f)
_renovate commented 2026-05-05 05:28:55 +02:00 (Migrated from edugit.org)

added 1 commit

  • ddcebfcd - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>ddcebfcd - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=103178&start_sha=ad234f03c6fdfc8b645903d13ea9ad0407e2d120)
_renovate commented 2026-05-05 06:15:06 +02:00 (Migrated from edugit.org)

added 1 commit

  • 59c3de03 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>59c3de03 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=103258&start_sha=ddcebfcda9fd10959382e0601791ceced612fe2c)
_renovate commented 2026-05-05 07:36:40 +02:00 (Migrated from edugit.org)

added 1 commit

  • 70d4eb16 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>70d4eb16 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=103403&start_sha=59c3de03e1af42e40a89fcec5a0a6030cb93fa86)
_renovate commented 2026-05-05 09:05:35 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-05 09:53:19 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-05 11:08:24 +02:00 (Migrated from edugit.org)

added 1 commit

  • afb57d60 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>afb57d60 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=103671&start_sha=70d4eb16e6b1cd68e9c0e38bad0e72798b4cc128)
_renovate commented 2026-05-05 11:08:24 +02:00 (Migrated from edugit.org)

changed the description

changed the description
_renovate commented 2026-05-05 11:14:56 +02:00 (Migrated from edugit.org)

added 1 commit

  • 1f1e3fd7 - Update dependency pytest-redis to v4

Compare with previous version

added 1 commit <ul><li>1f1e3fd7 - Update dependency pytest-redis to v4</li></ul> [Compare with previous version](/AlekSIS/official/AlekSIS/-/merge_requests/355/diffs?diff_id=103690&start_sha=afb57d6059961453dcaaf7b6197d49a4d7684f31)
_renovate commented 2026-05-05 11:33:47 +02:00 (Migrated from edugit.org)

changed the description

changed the description
hansegucker commented 2026-05-05 12:12:26 +02:00 (Migrated from edugit.org)

mentioned in commit a3dba6f870

mentioned in commit a3dba6f870a17ef3154ae358657006c6449ccb97
hansegucker (Migrated from edugit.org) merged commit a3dba6f870 into master 2026-05-05 12:12:26 +02:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
aleksis/AlekSIS!459
No description provided.